Thursday, 29 August 2013

Serialize/deserialize using protobuf-net c#

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