I have an array of bytes in C#:
byte[] bmp = File.ReadAllBytes("D:\\x.bmp");
And I want to represent it in DataGridView as follows (three columns - first column offset, second column sizebyte, third column description, and rows are elements from byte array from x.bmp):
0 2 signature
2 4 size BMP
6 2 reserved
8 2 reserved
10 4 offset start image
14 4 must 40
18 4 width
22 4 height
26 2 must 1
Can i represent byte array in this way using DataGridView in C# ?