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
IList list = new List().AsReadOnly();
Or, if you want an IEnumerable<>:
IEnumerable<>
IEnumerable sequence = Enumerable.Empty();