Hello Sir..
I have one to four table in dataset and i want to cunt number of rows/columns in fourth table from dataset please define how can count rows or columns?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ranjit PowarPosted May 30, 2014, 6:16 AM
int rows;
rows=ds.Tables[3].Rows.Count;
For columns
int col= ds.Tables[3].Columns .Count;
VulpesPosted May 30, 2014, 6:10 AM