You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nanoFramework.CoreLibrary/System/Byte.cs
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,8 @@ public struct Byte
16
16
{
17
17
// this field is required in the native end
18
18
#pragma warning disable 0649
19
-
privatebyte_value;
19
+
// Do not rename (binary serialization)
20
+
privatebytem_value;
20
21
#pragma warning restore 0649
21
22
22
23
/// <summary>
@@ -35,7 +36,7 @@ public struct Byte
35
36
/// <remarks>The return value is formatted with the general numeric format specifier ("G") and the NumberFormatInfo object for the thread current culture.</remarks>
Copy file name to clipboardExpand all lines: nanoFramework.CoreLibrary/System/Int16.cs
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,8 @@ public struct Int16
16
16
{
17
17
// this field is required in the native end
18
18
#pragma warning disable 0649
19
-
internalshort_value;
19
+
// Do not rename (binary serialization)
20
+
internalshortm_value;
20
21
#pragma warning restore 0649
21
22
22
23
/// <summary>
@@ -36,7 +37,7 @@ public struct Int16
36
37
/// <returns>The string representation of the value of this instance, consisting of a minus sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes.</returns>
Copy file name to clipboardExpand all lines: nanoFramework.CoreLibrary/System/Int32.cs
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,8 @@ namespace System
14
14
[Serializable]
15
15
publicstructInt32
16
16
{
17
-
internalint_value;
17
+
// Do not rename (binary serialization)
18
+
internalintm_value;
18
19
19
20
/// <summary>
20
21
/// Represents the largest possible value of an Int32. This field is constant.
@@ -33,7 +34,7 @@ public struct Int32
33
34
/// <returns>The string representation of the value of this instance, consisting of a negative sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes.</returns>
Copy file name to clipboardExpand all lines: nanoFramework.CoreLibrary/System/Int64.cs
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,8 @@ namespace System
14
14
[Serializable]
15
15
publicstructInt64
16
16
{
17
-
internallong_value;
17
+
// Do not rename (binary serialization)
18
+
internallongm_value;
18
19
19
20
/// <summary>
20
21
/// Represents the largest possible value of an Int64. This field is constant.
@@ -33,7 +34,7 @@ public struct Int64
33
34
/// <returns>The string representation of the value of this instance, consisting of a minus sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes.</returns>
Copy file name to clipboardExpand all lines: nanoFramework.CoreLibrary/System/SByte.cs
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,8 @@ public struct SByte
16
16
{
17
17
// this field is required in the native end
18
18
#pragma warning disable 0649
19
-
privatesbyte_value;
19
+
// Do not rename (binary serialization)
20
+
privatesbytem_value;
20
21
#pragma warning restore 0649
21
22
22
23
/// <summary>
@@ -37,7 +38,7 @@ public struct SByte
37
38
/// <returns>The string representation of the value of this instance, consisting of a negative sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes.</returns>
Copy file name to clipboardExpand all lines: nanoFramework.CoreLibrary/System/UInt16.cs
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,8 @@ public struct UInt16
16
16
{
17
17
// this field is required in the native end
18
18
#pragma warning disable 0649
19
-
privateushort_value;
19
+
// Do not rename (binary serialization)
20
+
privateushortm_value;
20
21
#pragma warning restore 0649
21
22
22
23
/// <summary>
@@ -36,7 +37,7 @@ public struct UInt16
36
37
/// <returns>The string representation of the value of this instance, which consists of a sequence of digits ranging from 0 to 9, without a sign or leading zeros.</returns>
0 commit comments