I'm reading data out of a binary file into structs in C#. What's the best way to populate a DataGridView with these records? I've only ever used the Binding with actual databases and in fact all the examples I can find cover using flat text files or databases. Should I not be using the DataGridView at all? Should I be creating a DataTable and binding it to the DataGridView?
Thanks.