.NET 2.0
Trying to find if I am on the first row so I can do a comparison
foreach(DataRow row in tbl.Rows) {
if (row<something> == "first row") { continue; }
foreach(DataColumn col in tbl.Columns) {
if (something == "first column) { continue; }
....
But it is escaping me.
Actually the easiest and safest way I found that someone posted on here, but removed it was: