I have to add about 3000 Elements to more than 20 Lists. The code that I am using:
LastChange = new List<string>();
LastChange.AddRange(Enumerable.Repeat("/", 3000));
same for more than 20 Lists...
Is there any "fastest way" to add "/" to the Lists or that is the best solution. Thanks in Advance...