Skip to content

Commit e505f7c

Browse files
authored
Merge pull request #263 from max-wilkinson/patch-1
Update Comments in Sample01_BasicUsage.cs
2 parents 52570ee + 5b621e1 commit e505f7c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

samples/Samples/Sample01_BasicUsage.cs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
namespace Samples
3131
{
3232
/// <summary>
33-
/// A simple sample code for basic serialization/deserialization.
33+
/// A simple sample code for basic serialization/deserialization.
3434
/// </summary>
3535
[TestFixture]
3636
public class BasicUsageSample
@@ -76,7 +76,12 @@ public void SerializeThenDeserialize()
7676
}
7777
}
7878

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.
84+
/// </remarks>
8085
public class PhotoEntry
8186
{
8287
public long Id { get; set; }

0 commit comments

Comments
 (0)