What's the easiest way to convert a BindingList<T> to a T[] ?
EDIT: I'm on 3.0 for this project, so no LINQ.
|
1
|
|||
|
|
|
Well, if you have LINQ (C# 3.0 + either .NET 3.5 or LINQBridge) you can use
|
||
|
|
|
|
I've changed this post since I noticed you tagged this with .net2.0. You could use a List since it has an ToArray() method.
Note: This is indeed a less performant solution than the CopyTo solution that other members have shown. Use their solution instead, this one creates two arrays, the result and one internal to the List instance. |
||||||
|
|
|
In .Net 2 you have to use |
||
|
|