Visualize common inheritance type arguments in class constructor in VS 2010

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?

+5
source share
1 answer

You can see type arguments by changing the Members Format property in the class diagram properties to Name and Type or Full Signature.

+1

All Articles