Why doesn\'t C# List<>\'s ToString method provide a sensible string representation that prints its contents? I get the class name (which I as
List<>
ToString
Because it's probably not that easy to implement.
A List<> can contain a lot of stuff. For example another List<> that contains a Dictionary<> that contains complex objects...
Dictionary<>