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

Cannot distinguish generics type with different number of type arguments #2

Closed pierre3 closed 7 years ago

pierre3 commented 7 years ago
class GenericsType {
} 

class GenericsType<T1> {
}

class GenericsType<T1,T2> {
}

In the plantuml, all of the above classes are interpreted as the same class.

class GenericsType {
}

class GenericsType`1<T1> {
}

class GenericsType`2<T1,T2> {
}

I consider converting to such UML.