I would like to do something like this in .NET 3.5. What's the quickest way?
IEnumerable<DataRow> collection = TypedDataSet.TypedTableBase<DataRow>.Rows as IEnumerable<DataRow>;
You can call OfType<DataRow>() on the DataRowCollection.
OfType<DataRow>()
DataRowCollection
1.4m articles
1.4m replys
5 comments
57.0k users