Is it possible to visualize arguments like shared inheritance in Visual Studio 2010? If there is a class with a property such as
Dictionary<KeyClass,ValueClass> DictionaryProperty
I can choose to display the base class of this property. But then there is inheritance of the universal Dictionary class without type arguments (KeyClass, ValueClass). I cannot find a way to visualize type arguments in the class constructor!
Is there any way to do this?
source
share