1
Reply

How to serialize a Hash table

Vinod Dua

Vinod Dua

13y
4.8k
0
Reply

    var bf = new BinaryFormatter(); var ms = new MemoryStream(); bf.Serialize(ms, ht); byte[] htobj = ms.ToArray();