pierre3 / PlantUmlClassDiagramGenerator

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

Dependencies of classes that do not have it as a field but are calling it are not output. #105

Open hvc-neoria opened 3 months ago

hvc-neoria commented 3 months ago

初めまして。 フィールドとして持たないが呼び出しているクラスの依存性が出力されませんでした。

public class A
{
    void Start()
    {
        var b = new B();
    }
}

public class B
{

}
@startuml
class A {
    - Start() : void
}
class B {
}
@enduml