I was using json.net to serialize/deserialize a pojo class to json and then send it to rabbitmq.Now I want to do the same using binary data in apache avro format.How is it possible to serialize/deserialize an object in c# ?
public class person
{
public string FirstName { get; set; }
public string LastName { get; set; }
public byte[] toAvro()
{
}
public void fromAvro(byte[] input)
{
}
}