pierre3 / PlantUmlClassDiagramGenerator

This is a generator to create a class-diagram of PlantUML from the C# source code.
MIT License
654 stars 129 forks source link

Inheritance #1

Closed r1z1 closed 7 years ago

r1z1 commented 7 years ago

Great work, I was about to start a project like that!

It would be great if we can see the base classes, created with "<|--"

pierre3 commented 7 years ago

Thank you for your feedback. I'll think about the output of inheritance relationships.

pierre3 commented 7 years ago

I tried to output the inheritance relationships between a subclass and a baseclass. Please check this commit.

class ClassB : ClassA{
}
class ClassB  {
}
ClassA <|-- ClassB
pierre3 commented 7 years ago

closed