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/Text/DecoderExceptionFallback.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Text/DecoderExceptionFallback.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Text/DecoderExceptionFallback.cs b/src/System.Private.CoreLib/shared/System/Text/DecoderExceptionFallback.cs
index 8bfc1f32d..56c004714 100644
--- a/src/System.Private.CoreLib/shared/System/Text/DecoderExceptionFallback.cs
+++ b/src/System.Private.CoreLib/shared/System/Text/DecoderExceptionFallback.cs
@@ -29,7 +29,7 @@ namespace System.Text
}
}
- public override bool Equals(Object value)
+ public override bool Equals(object value)
{
DecoderExceptionFallback that = value as DecoderExceptionFallback;
if (that != null)
@@ -112,19 +112,19 @@ namespace System.Text
HResult = HResults.COR_E_ARGUMENT;
}
- public DecoderFallbackException(String message)
+ public DecoderFallbackException(string message)
: base(message)
{
HResult = HResults.COR_E_ARGUMENT;
}
- public DecoderFallbackException(String message, Exception innerException)
+ public DecoderFallbackException(string message, Exception innerException)
: base(message, innerException)
{
HResult = HResults.COR_E_ARGUMENT;
}
- public DecoderFallbackException(String message, byte[] bytesUnknown, int index)
+ public DecoderFallbackException(string message, byte[] bytesUnknown, int index)
: base(message)
{
_bytesUnknown = bytesUnknown;