How would I go about displaying a 2-dimensional integer array into a DataGridView Control in C# .Net 4.0?
to get Merlyn's solution to work you'll need to set the column count before you add rows to the datagridview:
dataGridView1.ColumnCount = 3;