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/RankException.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/RankException.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/RankException.cs b/src/System.Private.CoreLib/shared/System/RankException.cs
index bdd2cd51f..e1e7d169b 100644
--- a/src/System.Private.CoreLib/shared/System/RankException.cs
+++ b/src/System.Private.CoreLib/shared/System/RankException.cs
@@ -26,13 +26,13 @@ namespace System
HResult = HResults.COR_E_RANK;
}
- public RankException(String message)
+ public RankException(string message)
: base(message)
{
HResult = HResults.COR_E_RANK;
}
- public RankException(String message, Exception innerException)
+ public RankException(string message, Exception innerException)
: base(message, innerException)
{
HResult = HResults.COR_E_RANK;