Indexed properties are not visited
peteroupc opened this issue · 0 comments
peteroupc commented
It appears that indexed properties (of the form this[int value]
) are not visited by NuDoq, even though they appear in the XML documentation and are present in the class. The following is an example of indexed properties:
class IndexedClass {
/// <summary>Summary.</summary>
public int this[int index] {
get { return 0; }
set { Console.WriteLine(value); }
}
}