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/Globalization/StringInfo.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Globalization/StringInfo.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Globalization/StringInfo.cs b/src/System.Private.CoreLib/shared/System/Globalization/StringInfo.cs
index aa62b2c47..f7be252bf 100644
--- a/src/System.Private.CoreLib/shared/System/Globalization/StringInfo.cs
+++ b/src/System.Private.CoreLib/shared/System/Globalization/StringInfo.cs
@@ -32,7 +32,7 @@ namespace System.Globalization
this.String = value;
}
- public override bool Equals(Object value)
+ public override bool Equals(object value)
{
StringInfo that = value as StringInfo;
if (that != null)
@@ -266,7 +266,7 @@ namespace System.Globalization
{
if (index == len)
{
- return (String.Empty);
+ return (string.Empty);
}
throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_Index);
}