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
Starting with .net 4.6 you can also use:
IList emptyList = Array.Empty();
This does only create a new instance once for every different type you specify as T.