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/Threading/AbandonedMutexException.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Threading/AbandonedMutexException.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Threading/AbandonedMutexException.cs b/src/System.Private.CoreLib/shared/System/Threading/AbandonedMutexException.cs
index c7e604f33..bd504dd27 100644
--- a/src/System.Private.CoreLib/shared/System/Threading/AbandonedMutexException.cs
+++ b/src/System.Private.CoreLib/shared/System/Threading/AbandonedMutexException.cs
@@ -27,13 +27,13 @@ namespace System.Threading
HResult = HResults.COR_E_ABANDONEDMUTEX;
}
- public AbandonedMutexException(String message)
+ public AbandonedMutexException(string message)
: base(message)
{
HResult = HResults.COR_E_ABANDONEDMUTEX;
}
- public AbandonedMutexException(String message, Exception inner)
+ public AbandonedMutexException(string message, Exception inner)
: base(message, inner)
{
HResult = HResults.COR_E_ABANDONEDMUTEX;
@@ -46,14 +46,14 @@ namespace System.Threading
SetupException(location, handle);
}
- public AbandonedMutexException(String message, int location, WaitHandle handle)
+ public AbandonedMutexException(string message, int location, WaitHandle handle)
: base(message)
{
HResult = HResults.COR_E_ABANDONEDMUTEX;
SetupException(location, handle);
}
- public AbandonedMutexException(String message, Exception inner, int location, WaitHandle handle)
+ public AbandonedMutexException(string message, Exception inner, int location, WaitHandle handle)
: base(message, inner)
{
HResult = HResults.COR_E_ABANDONEDMUTEX;