I need to make a BitMap of the values stored in a dictionary. I've never really worked with graphics stuff so I have no idea.
public struct OrderKilled
{
public Char[] TimeStamp;
public Char[] FLAG_MSG;
public Char[] Symbol;
public Char[] OrderID;
public static OrderKilled FromArray(byte[] bytes, int index)
{
using (var reader = new BinaryReader(new MemoryStream(bytes, index, 28)))
{
var s = default(OrderKilled);
s.TimeStamp = reader.ReadChars(8);
s.ITCH_MSG = reader.ReadChars(1);
s.Symbol = reader.ReadChars(10);
s.OrderID = reader.ReadChars(9);
return s;
}
}
}
private Dictionary<string, OrderKilled> OrdKilledDB = new Dictionary<string, OrderKilled>();
I'd like to convert the values of the dictionary to a bitmap. I'm not sure how this can be accomplished.
Thanks Guys