tags:

views:

69

answers:

1

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,

+1  A: 

Since I'm unsure of its use... could a simple multidimensional array work?

int[,] myArray = new int[4,2];
myArray[2,1] = 25;
Redburn