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:
authorJan Kotas <jkotas@microsoft.com>2017-05-07 00:34:22 +0300
committerJan Kotas <jkotas@microsoft.com>2017-05-07 00:34:22 +0300
commit5be7cb3f903ee48316cbbef45828d0ed8a709f10 (patch)
treed01a2791aca47ba57d519498928ac3fa9409c13b /src/System.Private.CoreLib
parent8d1a1410a31a0353508517c2852397349d3aeda5 (diff)
Missed file in last change
[tfs-changeset: 1657489]
Diffstat (limited to 'src/System.Private.CoreLib')
-rw-r--r--src/System.Private.CoreLib/src/System/Globalization/FormatProvider.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/System.Private.CoreLib/src/System/Globalization/FormatProvider.cs b/src/System.Private.CoreLib/src/System/Globalization/FormatProvider.cs
index 0c1ef9d7a..c32136134 100644
--- a/src/System.Private.CoreLib/src/System/Globalization/FormatProvider.cs
+++ b/src/System.Private.CoreLib/src/System/Globalization/FormatProvider.cs
@@ -124,10 +124,6 @@ namespace System.Globalization
{
return FormatProvider.Number.FormatSingle(value, format, provider);
}
- public static String FormatTimeSpan(TimeSpan value, String format, IFormatProvider provider)
- {
- return FormatProvider.TimeSpanFormat.Format(value, format, provider);
- }
public static String FormatUInt32(uint value, String format, IFormatProvider provider)
{
return FormatProvider.Number.FormatUInt32(value, format, provider);
@@ -159,18 +155,6 @@ namespace System.Globalization
{
return FormatProvider.Number.ParseSingle(value, options, provider);
}
- public static TimeSpan ParseTimeSpan(String value, IFormatProvider provider)
- {
- return FormatProvider.TimeSpanParse.Parse(value, provider);
- }
- public static TimeSpan ParseTimeSpanExact(String value, String format, IFormatProvider provider, TimeSpanStyles styles)
- {
- return FormatProvider.TimeSpanParse.ParseExact(value, format, provider, styles);
- }
- public static TimeSpan ParseTimeSpanExactMultiple(String value, String[] formats, IFormatProvider provider, TimeSpanStyles styles)
- {
- return FormatProvider.TimeSpanParse.ParseExactMultiple(value, formats, provider, styles);
- }
public static UInt32 ParseUInt32(String value, NumberStyles options, IFormatProvider provider)
{
return FormatProvider.Number.ParseUInt32(value, options, provider);
@@ -199,18 +183,6 @@ namespace System.Globalization
{
return FormatProvider.Number.TryParseSingle(value, options, provider, out result);
}
- public static Boolean TryParseTimeSpan(String value, IFormatProvider provider, out TimeSpan result)
- {
- return FormatProvider.TimeSpanParse.TryParse(value, provider, out result);
- }
- public static Boolean TryParseTimeSpanExact(String value, String format, IFormatProvider provider, TimeSpanStyles styles, out TimeSpan result)
- {
- return FormatProvider.TimeSpanParse.TryParseExact(value, format, provider, styles, out result);
- }
- public static Boolean TryParseTimeSpanExactMultiple(String value, String[] formats, IFormatProvider provider, TimeSpanStyles styles, out TimeSpan result)
- {
- return FormatProvider.TimeSpanParse.TryParseExactMultiple(value, formats, provider, styles, out result);
- }
public static Boolean TryParseUInt32(String s, NumberStyles style, IFormatProvider provider, out UInt32 result)
{
return FormatProvider.Number.TryParseUInt32(s, style, provider, out result);