Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/IO/BinaryWriter.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/IO/BinaryWriter.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/System.Private.CoreLib/shared/System/IO/BinaryWriter.cs b/src/System.Private.CoreLib/shared/System/IO/BinaryWriter.cs
index ad1d31f57..d1a333f41 100644
--- a/src/System.Private.CoreLib/shared/System/IO/BinaryWriter.cs
+++ b/src/System.Private.CoreLib/shared/System/IO/BinaryWriter.cs
@@ -166,7 +166,7 @@ namespace System.IO
//
public unsafe virtual void Write(char ch)
{
- if (Char.IsSurrogate(ch))
+ if (char.IsSurrogate(ch))
throw new ArgumentException(SR.Arg_SurrogatesNotAllowedAsSingleChar);
Debug.Assert(_encoding.GetMaxByteCount(1) <= 16, "_encoding.GetMaxByteCount(1) <= 16)");
@@ -223,7 +223,7 @@ namespace System.IO
public virtual void Write(decimal value)
{
- Decimal.GetBytes(value, _buffer);
+ decimal.GetBytes(value, _buffer);
OutStream.Write(_buffer, 0, 16);
}
@@ -325,7 +325,7 @@ namespace System.IO
// a four-byte unsigned integer, and then writes that many characters
// to the stream.
//
- public unsafe virtual void Write(String value)
+ public unsafe virtual void Write(string value)
{
if (value == null)
throw new ArgumentNullException(nameof(value));