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