'Doxygen C# support about class overload on generic arity

Considering two C# classes, overloaded on their generic arity, I mean: same name, one is generic, the other is not (but others arity variations may lead to the same issue).

class MyClass { public void Foo1() {} }
class MyClass<T> { public void Foo2() {} }

Doxygen [ver 1.9.1] seems to make a merge between the two classes, and finally, only one class documentation link is produced.

Have I missed something to help doxygen to discriminate entities ?

The @class tag makes no sense since the comment block is not external to the class.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source