summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/UInt32.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/UInt32.cs')
-rw-r--r--src/mscorlib/src/System/UInt32.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mscorlib/src/System/UInt32.cs b/src/mscorlib/src/System/UInt32.cs
index 7c27efef39..2731047e06 100644
--- a/src/mscorlib/src/System/UInt32.cs
+++ b/src/mscorlib/src/System/UInt32.cs
@@ -26,7 +26,7 @@ namespace System
public struct UInt32 : IComparable, IFormattable, IConvertible
, IComparable<UInt32>, IEquatable<UInt32>
{
- private uint m_value;
+ private uint m_value; // Do not rename (binary serialization)
public const uint MaxValue = (uint)0xffffffff;
public const uint MinValue = 0U;