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: samples/Samples/Sample01_BasicUsage.cs
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@
30
30
namespaceSamples
31
31
{
32
32
/// <summary>
33
-
/// A simple sample code for basic serialization/deserialization.
33
+
/// A simple sample code for basic serialization/deserialization.
34
34
/// </summary>
35
35
[TestFixture]
36
36
publicclassBasicUsageSample
@@ -76,7 +76,12 @@ public void SerializeThenDeserialize()
76
76
}
77
77
}
78
78
79
-
// Note: If you want to interop with other platform using SerializationMethod.Array (default), you should use [MessagePackMember]. See Sample06 for details.
79
+
/// <summary>
80
+
/// Simple class that will be used for serialization/deserialization.
81
+
/// </summary>
82
+
/// <remarks>
83
+
/// If you want to interop with other platform using SerializationMethod.Array (default), you should use [MessagePackMember]. See Sample06 for details.
0 commit comments