SyntaxFix
Write A Post
Hire A Developer
Questions
If ds is the DataSet, you can access the CustomerID column of the first row in the first table with something like:
DataRow dr = ds.Tables[0].Rows[0]; Console.WriteLine(dr["CustomerID"]);