Hi,
I'm trying to output an object graph via reflection. In it there are several generic types (lists, dictionaries). I do not know the types (string, object, etc.) they contain but want to list them (using .ToString()).
So, is there a way to output a generic list / dictionary in generic way, that means without writing overloaded functions for each key <-> value combintation?
I think it will be possible with .NET 4.0, but that's currently not yet here..