Search code examples
c#relationshipumlvisual-paradigm

Interface Class relationship in visual paradigm


I have been working on this but could not find a way to denote the relationship between a class and an interface that is implemented by class in an UML diagram.

My interface and class has following relationship:

interface foo

{

    void a();
    void b();

}

class goo : foo

{

    public override void a()
    {

        //Code goes here
    }
}

What can I use in visual paradigm to show their relationship?


Solution

  • It is shown like inheritance. This article may help you UML basics

    enter image description here