I have an exception being thrown from a C# method, that takes a generic list as a paremeter.
private static void DoWork(List<ClassName> a)
{
}
When it throws an exception, the stack trace shows an `1 instead of the class name for the list. Why is this? This is what the stack trace has.
...
at DoWork(List`1 a).
...