I have an array of strings and need to convert them to a dataset. Is there some shortcut way to do this? For example:
string[] results = GetResults();
DataSet myDataSet = new DataSet();
results = myDataSet.ToDataSet(); // Convert array to data set
I’m not too bothered about formatting or structure.