convert part of a list to an array
C#
21
Posts
8
Posters
0
Views
1
Watching
-
That is bad.
ArrayList
is the only list that existed back in .NET 1.0 and 1.1; since 2.0 we have generic lists such asList<int>
and there is no real use for ArrayList anymore, it is just an equivalent toList<object>
and therefore it is superfluous as a type. Furthermore it does not contribute at all to the solution of the OP's problem. :|Luc Pattyn [My Articles] Nil Volentibus Arduum
Thanks :)