There is a two-dimensional array of double:
private double[,] RecipesMatrix;
I want to bind it to DataGridView. How can I do this? If it is better, I can change array to some other collection.
views:
283answers:
1
+1
A:
Edit: I mis-understood your question. Take a look at http://www.codeproject.com/KB/database/BindArrayGrid.aspx which solves exactly what you want.
Vivek
2010-02-09 17:07:07
By two-dimensional array I meant matrix m*n (m - number of rows, n - number of columns).
Sergey
2010-02-09 17:25:31
Above can still be used for a m*n matrix. `m` number of `Items` and each `Item` with `n` properties. Am I missing something?
Vivek
2010-02-09 18:11:06
n is a variable, not constant value.
Sergey
2010-02-10 16:53:14