Wrong method name displayed for methods of generic classes
Status: Beta
Brought to you by:
xharzej
For methods of a generic class, in the method documentation file generated by the MSDN documenter (and possibly others), the class name is used instead of the method name. Example:
public class GenericBase<T>
{
public void Test() { }
}
This will generate the following in the documentation:
public void GenericBase();