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/SortKey.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Globalization/SortKey.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Globalization/SortKey.cs b/src/System.Private.CoreLib/shared/System/Globalization/SortKey.cs
index 647db75b6..962494625 100644
--- a/src/System.Private.CoreLib/shared/System/Globalization/SortKey.cs
+++ b/src/System.Private.CoreLib/shared/System/Globalization/SortKey.cs
@@ -33,7 +33,7 @@ namespace System.Globalization
// The following constructor is designed to be called from CompareInfo to get the
// the sort key of specific string for synthetic culture
//
- internal SortKey(String localeName, String str, CompareOptions options, byte[] keyData)
+ internal SortKey(string localeName, string str, CompareOptions options, byte[] keyData)
{
_keyData = keyData;
_localeName = localeName;
@@ -49,7 +49,7 @@ namespace System.Globalization
// of SortKey.
//
////////////////////////////////////////////////////////////////////////
- public virtual String OriginalString
+ public virtual string OriginalString
{
get
{
@@ -133,7 +133,7 @@ namespace System.Globalization
// or not object refers to the same SortKey as the current instance.
//
////////////////////////////////////////////////////////////////////////
- public override bool Equals(Object value)
+ public override bool Equals(object value)
{
SortKey that = value as SortKey;
@@ -167,7 +167,7 @@ namespace System.Globalization
// SortKey.
//
////////////////////////////////////////////////////////////////////////
- public override String ToString()
+ public override string ToString()
{
return ("SortKey - " + _localeName + ", " + _options + ", " + _string);
}