vote up 1 vote down star

What's the best performing way to convert a DataRowCollection instance to a DataRow[]?

flag

2 Answers

vote up 0 vote down
DataRow[] rows = dt.Select();

Assuming you still have access to the datatable.

link|flag
vote up 3 vote down

This is kind of obvious, but:

DataRowCollection.CopyTo(DataRow[] array, Int32 offset) ?

It seems like no matter what, you're going to have to iterate the collection (CopyTo iterates the internal DataRowTree elements).

I suppose you could use reflection to access the non-public tree, but at a significant cost.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.