I have a DataTable that contains a single row. I want to convert this DataTable values into a string array such that i can access the column values of that DataTable through
If that's all what you want to do, you don't need to convert it into an array. You can just access it as:
string myData=yourDataTable.Rows[0][1].ToString();//Gives you USA