I am having problems finding out how to remove everything from a List.
//Creating new List
List<Number> ThisList = new List<Number>();
Once it is populated and I have got it to display how do i remove all the contents within the list so i can use it to display different results.
I have had a look at RemoveAll, but i don't think that is what i want. If it is, I have no idea what condition I need to put in to remove all the elements from the List.
Thanks