¡@

Home 

c# Programming Glossary: originallist

Cloning List<T>

http://stackoverflow.com/questions/519461/cloning-listt

a List you would just call List int cloneList new List int originalList But I tried that in my code and I seem to be getting effects.. effects that imply the above is simply doing cloneList originalList... because changes to cloneList seem to be affecting originalList... because changes to cloneList seem to be affecting originalList. So what is the way to clone a List EDIT I am thinking of doing..