Visualize type arguments of generic inheritance in class designer in VS 2010
Is there a possibility to visualize the type arguments o开发者_运维百科f 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?
You can see the type arguments by changing the Members Format property in the Class Diagram properties to "Name and Type" or "Full Signature".
精彩评论