summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/SByte.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/SByte.cs')
-rw-r--r--src/mscorlib/src/System/SByte.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mscorlib/src/System/SByte.cs b/src/mscorlib/src/System/SByte.cs
index 2f1b2da947..9e550936fe 100644
--- a/src/mscorlib/src/System/SByte.cs
+++ b/src/mscorlib/src/System/SByte.cs
@@ -24,7 +24,7 @@ namespace System
public struct SByte : IComparable, IFormattable, IConvertible
, IComparable<SByte>, IEquatable<SByte>
{
- private sbyte m_value;
+ private sbyte m_value; // Do not rename (binary serialization)
// The maximum value that a Byte may represent: 127.
public const sbyte MaxValue = (sbyte)0x7F;