Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions samples/Samples/Sample01_BasicUsage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
namespace Samples
{
/// <summary>
/// A simple sample code for basic serialization/deserialization.
/// A simple sample code for basic serialization/deserialization.
/// </summary>
[TestFixture]
public class BasicUsageSample
Expand Down Expand Up @@ -76,7 +76,12 @@ public void SerializeThenDeserialize()
}
}

// Note: If you want to interop with other platform using SerializationMethod.Array (default), you should use [MessagePackMember]. See Sample06 for details.
/// <summary>
/// Simple class that will be used for serialization/deserialization.
/// </summary>
/// <remarks>
/// If you want to interop with other platform using SerializationMethod.Array (default), you should use [MessagePackMember]. See Sample06 for details.
/// </remarks>
public class PhotoEntry
{
public long Id { get; set; }
Expand Down