What\'s the standard way to get a typed, readonly empty list in C#, or is there one?
ETA: For those asking \"why?\": I have a virtual method that re
Construct an instance of System.Collections.ObjectModel.ReadOnlyCollection from your list.
List items = new List(); ReadOnlyCollection readOnlyItems = new ReadOnlyCollection(items);