I am creating UML diagrams that will represent C# code and I've reached somewhat of an impasse. I am currently representing a Dictionary<object, object>
by using a qualified association, where the qualification is the key type and the class at the end of the association is the value type.
Now I would like to represent a type in UML, like so: Dictionary<int, Dictionary<object, object>
. Is there any type of standard I can use to create a relationship that will accurately represent this relationship?