Reputation: 11916
Could anybody explain what does this contain:
ds.Tables[0].Rows[0][0]
Upvotes: 0
Views: 118
Reputation: 6148
This is the first column of the first row of the first table. If you are asking for something else please be more specific.
Upvotes: 2
Reputation: 12711
It looks like this is referring to the first column in the first DataRow from the first DataTable in a DataSet.
Upvotes: 3