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/Guid.cs
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -190,6 +190,15 @@ public int CompareTo(object value)
190
190
/// Returns a 16-element byte array that contains the value of this instance.
191
191
/// </summary>
192
192
/// <returns>A 16-element byte array.</returns>
193
+
/// <remarks>
194
+
/// <para>
195
+
/// You can use the byte array returned by this method to round-trip a Guid value by calling the <see cref="Guid(byte[])"/> constructor.
196
+
/// </para>
197
+
/// <para>
198
+
/// Note that the order of bytes in the returned byte array is different from the string representation of a Guid value.
199
+
/// The order of the beginning four-byte group and the next two two-byte groups is reversed, whereas the order of the last two-byte group and the closing six-byte group is the same.
0 commit comments