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