geaz / sharpDox

A c# documentation tool (Discontinued)

Home Page:http://sharpdox.de

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Generic type parameters are not displayed correctly

asarapas opened this issue · comments

commented

Sample interface method:
List<Type1> GetValues(List<Type2> inputList);

Documentation Generated:

public abstract List<Type1> GetValues(List inputList)
Parameters
inputList
List
...summary...

should be:

public abstract List<Type1> GetValues(List<Type2> inputList)
Parameters
inputList
List<Type2>
...summary...