I am doing a research paper over the multiple sorting methods in C#. To do this I need to create a list for sorting, then sort this list using the sort methods. The problem is i don't know an easy way to make a copy of this list without creating around 100 unique lists so i can effectively test each method.
-Is there an easy way to create multiple copies of a list in a efficient way.
-Is there a way to clear a list then re-populate it with the original list eliminating the need to create a lot of unique lists.
Thanks in advance.