Is it possible to find the number of columns a data set has?
I know we can find the length of rows with:
ds.Tables[0].Rows.length
Is th
You should look the properties of DataTable before asking this. As it should work.
DataTable
ds.Tables[0].Columns.Count;