Fast performing and thread safe observable collection

ObservableCollection can be fast, if it wants to. 🙂 The code below is a very good example of a thread safe, faster observable collection and you can extend it further to your wish. using System.Collections.Specialized; public class FastObservableCollection<T> : ObservableCollection<T> { private readonly object locker = new object(); /// <summary> /// This private variable holds … Read more