foreach(DataRow dro in DataTable.Rows){
string s = dro[ColumnIndex].ToString();
string s2 = dro["ColumnNameInQuotes"].ToString();//both yeild the same
result although the first way is much faster. If you want to sue
columnnames, use Bill Vaughn's method and create an enum where the
columnname corresponds to the index. Then you can effectively use the
"ColumnName" but get the efficiency of using the index.
//Also, I just casted to string, you'll need to adjust this to your needs
}