Display System class inheritance in UML class diagram(c#)

How can I show System class inheritance in a UML class diagram?

Example:

public class MyForm : Form

Form is the System class of c#

Upvotes: 0

Views: 907

Answers (1)

qwerty_so
qwerty_so

Reputation: 36295

Use a generalization like this: enter image description here

or this: enter image description here

Upvotes: 1

Related Questions