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/CultureData.Unix.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Globalization/CultureData.Unix.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Globalization/CultureData.Unix.cs b/src/System.Private.CoreLib/shared/System/Globalization/CultureData.Unix.cs
index 3fce52792..4b21f2e7d 100644
--- a/src/System.Private.CoreLib/shared/System/Globalization/CultureData.Unix.cs
+++ b/src/System.Private.CoreLib/shared/System/Globalization/CultureData.Unix.cs
@@ -149,7 +149,7 @@ namespace System.Globalization
// Failed, just use empty string
StringBuilderCache.Release(sb);
Debug.Fail("[CultureData.GetLocaleInfo(LocaleStringData)] Failed");
- return String.Empty;
+ return string.Empty;
}
return StringBuilderCache.GetStringAndRelease(sb);
}
@@ -216,7 +216,7 @@ namespace System.Globalization
// Failed, just use empty string
StringBuilderCache.Release(sb);
Debug.Fail("[CultureData.GetTimeFormatString(bool shortFormat)] Failed");
- return String.Empty;
+ return string.Empty;
}
return ConvertIcuTimeFormatString(StringBuilderCache.GetStringAndRelease(sb));
@@ -227,19 +227,19 @@ namespace System.Globalization
return this.GetLocaleInfo(LocaleNumberData.FirstDayOfWeek);
}
- private String[] GetTimeFormats()
+ private string[] GetTimeFormats()
{
string format = GetTimeFormatString(false);
return new string[] { format };
}
- private String[] GetShortTimeFormats()
+ private string[] GetShortTimeFormats()
{
string format = GetTimeFormatString(true);
return new string[] { format };
}
- private static CultureData GetCultureDataFromRegionName(String regionName)
+ private static CultureData GetCultureDataFromRegionName(string regionName)
{
// no support to lookup by region name, other than the hard-coded list in CultureData
return null;
@@ -371,7 +371,7 @@ namespace System.Globalization
return Array.Empty<CultureInfo>();
}
- Char [] chars = new Char[bufferLength];
+ char [] chars = new char[bufferLength];
bufferLength = Interop.Globalization.GetLocales(chars, bufferLength);
if (bufferLength <= 0)
@@ -394,7 +394,7 @@ namespace System.Globalization
int length = (int) chars[index++];
if (index + length <= bufferLength)
{
- CultureInfo ci = CultureInfo.GetCultureInfo(new String(chars, index, length));
+ CultureInfo ci = CultureInfo.GetCultureInfo(new string(chars, index, length));
if ((enumNeutrals && ci.IsNeutralCulture) || (enumSpecificss && !ci.IsNeutralCulture))
{
list.Add(ci);