I have a question regarding DataRows. I have a DataTable which I then converted into a list of DataRow‘s. Now I want the string information stored in each DataRow. How can I do this? This is my code:
List<DataRow> list = dt.AsEnumerable().ToList();
Just use an index to access each element. The following code would acccess the first element in the list.