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/Collections/Generic/KeyNotFoundException.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Collections/Generic/KeyNotFoundException.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Collections/Generic/KeyNotFoundException.cs b/src/System.Private.CoreLib/shared/System/Collections/Generic/KeyNotFoundException.cs
index 48eddb874..3990e1378 100644
--- a/src/System.Private.CoreLib/shared/System/Collections/Generic/KeyNotFoundException.cs
+++ b/src/System.Private.CoreLib/shared/System/Collections/Generic/KeyNotFoundException.cs
@@ -17,13 +17,13 @@ namespace System.Collections.Generic
HResult = HResults.COR_E_KEYNOTFOUND;
}
- public KeyNotFoundException(String message)
+ public KeyNotFoundException(string message)
: base(message)
{
HResult = HResults.COR_E_KEYNOTFOUND;
}
- public KeyNotFoundException(String message, Exception innerException)
+ public KeyNotFoundException(string message, Exception innerException)
: base(message, innerException)
{
HResult = HResults.COR_E_KEYNOTFOUND;