A
aeshiels
Hello,
I have a SortedList defined as...
SortedList<CUser, CUser> userList = new SortedList<CUser,
CUser>();
....and which to copy it to another sorted list
SortedList<CUser, CUser> userList2 = new SortedList<CUser,
CUser>();
What is the easiest way to do this without iterating through the list
and copying each indiviual item to the new array?
Im a C++ developer and use stl::copy to copy my vectors etc. and was
wondering anything similar in C# (ive had a look on google but didnt
find anything as yet).
Any help would be appreciated. Thanks
Andy.S
I have a SortedList defined as...
SortedList<CUser, CUser> userList = new SortedList<CUser,
CUser>();
....and which to copy it to another sorted list
SortedList<CUser, CUser> userList2 = new SortedList<CUser,
CUser>();
What is the easiest way to do this without iterating through the list
and copying each indiviual item to the new array?
Im a C++ developer and use stl::copy to copy my vectors etc. and was
wondering anything similar in C# (ive had a look on google but didnt
find anything as yet).
Any help would be appreciated. Thanks
Andy.S