How do I extract the specific column from the data table without using a loop. VS 2005 c #

advertisements

How do I retrieve specific column with values from dataset table with x no of columns without using loop? Any Help?


dataset.tables[i].Columns[j] where i is the table indexer and j is the column indexer.

or for a specific ros and columns dataset.tables[i].Rows[r][j] where r is the row index