say that I have a C# class like this:
class MyClass<Tkey,Tvalue>{}
How do I get "Tkey" and "Tvalue" from given Type instance?
I need the parameter name, not Type.
EDIT My class is of unknown type, so it can be something like
class MyClass2<Ttype>{}
as well