Access the select method of the datatable to convert the DataRowCollection to DataRow[];
You might get an error like this:-
System.Data.DataRow.DataRow(System.Data.DataRowBuilder)' is inaccessible due to its protection level
To overcome that use the select method from the datatable
Ex :-
DataRow[] results = genericDataSet.Tables[0].Select();