A
A.M
Hi,
Is there any way to show and array inside a DataGrid ?
Tried something like this, but it didn't work:
string s;
s="a,b,c,d,e,f,g";
string[] a;
string token = ":";
a= s.Split (token.ToCharArray() );
DataGrid1..DataSource=a; // Why it just just shows 118 ?
Thanks,
Ali
Is there any way to show and array inside a DataGrid ?
Tried something like this, but it didn't work:
string s;
s="a,b,c,d,e,f,g";
string[] a;
string token = ":";
a= s.Split (token.ToCharArray() );
DataGrid1..DataSource=a; // Why it just just shows 118 ?
Thanks,
Ali