I have DataTable.
DataTable dt = new DataTable();
dt.Columns.Add(new DataColumn("id", Type.GetType("System.Int32")));
dt.Columns.Add(new DataColumn("name", Type.GetType("System.String")));
// more columns here
I need list of "id" values.
Can I do it without loop over all rows in my DataTable and without Linq?
Edit:
After small discussion with Sergei I decided to use loop anyway.