Can anyone help me how to access for example value of first cell in 4th column?
a b c d 1 2 3 5 g n m l
for example, how to access to value
foreach(DataRow row in dt.Rows) { string value = row[3].ToString(); }