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/InvalidCastException.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/InvalidCastException.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/System.Private.CoreLib/shared/System/InvalidCastException.cs b/src/System.Private.CoreLib/shared/System/InvalidCastException.cs
index 055643278..cb6036aeb 100644
--- a/src/System.Private.CoreLib/shared/System/InvalidCastException.cs
+++ b/src/System.Private.CoreLib/shared/System/InvalidCastException.cs
@@ -22,19 +22,19 @@ namespace System
HResult = HResults.COR_E_INVALIDCAST;
}
- public InvalidCastException(String message)
+ public InvalidCastException(string message)
: base(message)
{
HResult = HResults.COR_E_INVALIDCAST;
}
- public InvalidCastException(String message, Exception innerException)
+ public InvalidCastException(string message, Exception innerException)
: base(message, innerException)
{
HResult = HResults.COR_E_INVALIDCAST;
}
- public InvalidCastException(String message, int errorCode)
+ public InvalidCastException(string message, int errorCode)
: base(message)
{
HResult = errorCode;