I have a Generic List as below
public static readonly List Customers = new List();
I\'m using the below met
You will need to use locks in every place where the collection gets modified or iterated over.
Either that or use one of the new thread-safe data structures, like ConcurrentBag.