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/InvalidTimeZoneException.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/InvalidTimeZoneException.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/InvalidTimeZoneException.cs b/src/System.Private.CoreLib/shared/System/InvalidTimeZoneException.cs
index 25b155e8d..1bbb7e067 100644
--- a/src/System.Private.CoreLib/shared/System/InvalidTimeZoneException.cs
+++ b/src/System.Private.CoreLib/shared/System/InvalidTimeZoneException.cs
@@ -14,12 +14,12 @@ namespace System
{
}
- public InvalidTimeZoneException(String message)
+ public InvalidTimeZoneException(string message)
: base(message)
{
}
- public InvalidTimeZoneException(String message, Exception innerException)
+ public InvalidTimeZoneException(string message, Exception innerException)
: base(message, innerException)
{
}