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/ICustomFormatter.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/ICustomFormatter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/shared/System/ICustomFormatter.cs b/src/System.Private.CoreLib/shared/System/ICustomFormatter.cs
index 47340f309..cd798b4a1 100644
--- a/src/System.Private.CoreLib/shared/System/ICustomFormatter.cs
+++ b/src/System.Private.CoreLib/shared/System/ICustomFormatter.cs
@@ -19,6 +19,6 @@ namespace System
public interface ICustomFormatter
{
// Interface does not need to be marked with the serializable attribute
- String Format(String format, Object arg, IFormatProvider formatProvider);
+ string Format(string format, object arg, IFormatProvider formatProvider);
}
}