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
If you want a list whose contents can't be modified, you can do:
ReadOnlyCollection foos = new List().AsReadOnly();