I have two dimensional array - and I need to convert it to one List ( same object )
I don't want to do it with 'for' or 'foreach' loop that will take each element and add it to the List.
Is there some other way to do it ?
Thanks
|
I have two dimensional array - and I need to convert it to one List ( same object ) I don't want to do it with 'for' or 'foreach' loop that will take each element and add it to the List. Is there some other way to do it ? Thanks |
||||
| show 1 more comment |
|
To Convert
|
|||||||||||||||||
|
|
Well, you can make it use a "blit" sort of copy, although it does mean making an extra copy :(
If you're happy with a single-dimensional array of course, just ignore the last line :)
Here's a quick benchmark of the three approaches (for loop,
Results (times in milliseconds);
EDIT: Having changed the for loop to call |
|||||||||||
|
|
A You may be able to do it with LINQ, but that will be slower. And while you don't write a loop yourself, under the hood there is still a loop.
The only thing that can make the code faster than the naive loop is calculating the number of elements and constructing the List with the correct capacity, so it doesn't need to grow.
In theory it might be possible to use private reflection and unsafe code to make it a bit faster doing a raw memory copy. But I strongly advice against that. |
|||||||||||
|
T[,]) or jagged(T[][])? – CodesInChaos Feb 27 '11 at 9:30