Hello,
I have a need to basically create a matrix of values in my Silverlight 3 application. Is there anything equivalent to a DataTable that I could store a matrix of values within?
Thank you,
Hello,
I have a need to basically create a matrix of values in my Silverlight 3 application. Is there anything equivalent to a DataTable that I could store a matrix of values within?
Thank you,
Since I'm unsure of its use... could a simple multidimensional array work?
int[,] myArray = new int[4,2];
myArray[2,1] = 25;