views:

25

answers:

2

Could any body explain what does this contain:

ds.Tables[0].Rows[0][0]

Thanks.

+3  A: 

It looks like this is referring to the first column in the first DataRow from the first DataTable in a DataSet.

Peter
+1  A: 

This is the first column of the first row of the first table. If you are asking for something else please be more specific.

Taz