Serialize/deserialize using protobuf-net c#
I have a class as given below which I need to serialize and deserialize
using protobuf-net and c#
public class Data
{
public static Dictionary<string, string> GetData()
{
var ph = new Dictionary<string, string>
{
{"Name", "Jeff"},
{"Address", "US"},
};
return ph;
}
}
No comments:
Post a Comment