N
Nick Valeontis
Here is a snippet:
------------------------------
double[,] a = new Double[2,2];
a[0, 0] = 1;
a[0, 1] = 2;
a[1, 0] = 3;
a[1, 1] = 4;
MessageBox.Show(a.ToString());
result: System.Double[,]
------------------------------
Is there a way to customize ToString's returning value so that i can get
something like "{ 1 2},{3, 4}" - without having to create a new class;
With regards,
Nick
------------------------------
double[,] a = new Double[2,2];
a[0, 0] = 1;
a[0, 1] = 2;
a[1, 0] = 3;
a[1, 1] = 4;
MessageBox.Show(a.ToString());
result: System.Double[,]
------------------------------
Is there a way to customize ToString's returning value so that i can get
something like "{ 1 2},{3, 4}" - without having to create a new class;
With regards,
Nick