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/Text/DecoderFallback.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Text/DecoderFallback.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Text/DecoderFallback.cs b/src/System.Private.CoreLib/shared/System/Text/DecoderFallback.cs
index 11b9539b5..fff8ad1d7 100644
--- a/src/System.Private.CoreLib/shared/System/Text/DecoderFallback.cs
+++ b/src/System.Private.CoreLib/shared/System/Text/DecoderFallback.cs
@@ -104,9 +104,9 @@ namespace System.Text
while ((ch = GetNextChar()) != 0)
{
// Make sure no mixed up surrogates
- if (Char.IsSurrogate(ch))
+ if (char.IsSurrogate(ch))
{
- if (Char.IsHighSurrogate(ch))
+ if (char.IsHighSurrogate(ch))
{
// High Surrogate
if (bHighSurrogate)
@@ -159,9 +159,9 @@ namespace System.Text
while ((ch = GetNextChar()) != 0)
{
// Make sure no mixed up surrogates
- if (Char.IsSurrogate(ch))
+ if (char.IsSurrogate(ch))
{
- if (Char.IsHighSurrogate(ch))
+ if (char.IsHighSurrogate(ch))
{
// High Surrogate
if (bHighSurrogate)