I have a problem with a DataRow that I\'m really struggling with.
The datarow is read in from an Excel spreadsheet using an OleDbConnection.
If I try to sele
This must be a new feature or something, otherwise I'm not sure why it hasn't been mentioned.
You can access the value in a column in a DataRow object using row["ColumnName"]:
DataRow
row["ColumnName"]
DataRow row = table.Rows[0]; string rowValue = row["ColumnName"].ToString();