Hi, and thanks, can a 2d array be initialized as such, in one line with a comma to let the array know the placeholder values?
SqlDataReader sdr...
if (sdr.HasRows)
{
while (sdr.Read()){
for (int i = 0; i <= 10; i++)
myarr.Add((string)("nam"+(i)),sdr["N"].ToString());
....
SqlDataReader sdr...
if (sdr.HasRows)
{
while (sdr.Read()){
for (int i = 0; i <= 10; i++)
myarr.Add((string)("nam"+(i)),sdr["N"].ToString());
....