Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visualize type arguments of generic inheritance in class designer in VS 2010

Is there a possibility to visualize the type arguments of a generic inheritance in Visual Studio 2010? If there is a class with a property like

Dictionary<KeyClass,ValueClass> DictionaryProperty

I can choose to display the base class of that property. But then there is an inheritance to the generic class Dictionary without the type arguments (KeyClass,ValueClass). I can't find any way to visualize the type arguments in the class designer!

Is there any way to do this?

like image 926
Kai Avatar asked Nov 14 '22 01:11

Kai


1 Answers

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

like image 189
topspin Avatar answered Dec 25 '22 14:12

topspin