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/IConvertible.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/IConvertible.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/System.Private.CoreLib/shared/System/IConvertible.cs b/src/System.Private.CoreLib/shared/System/IConvertible.cs
index 87351127f..7abd0c45c 100644
--- a/src/System.Private.CoreLib/shared/System/IConvertible.cs
+++ b/src/System.Private.CoreLib/shared/System/IConvertible.cs
@@ -54,10 +54,10 @@ namespace System
ulong ToUInt64(IFormatProvider provider);
float ToSingle(IFormatProvider provider);
double ToDouble(IFormatProvider provider);
- Decimal ToDecimal(IFormatProvider provider);
+ decimal ToDecimal(IFormatProvider provider);
DateTime ToDateTime(IFormatProvider provider);
- String ToString(IFormatProvider provider);
- Object ToType(Type conversionType, IFormatProvider provider);
+ string ToString(IFormatProvider provider);
+ object ToType(Type conversionType, IFormatProvider provider);
}
}