Lov*_*pta 2 c# uml relationship visual-paradigm
我已经在这方面工作了很长时间,但是找不到一种方法来表示类和UML图中的类实现的接口之间的关系.有人可以帮助我解决上述问题吗?我的界面和类有以下关系
interface foo
{
void a();
void b();
}
class goo : foo
{
public override void a()
{
//Code goes here
}
}
Run Code Online (Sandbox Code Playgroud)
你能告诉我在视觉范例中使用什么来展示那种关系吗?