Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Indexed properties are not visited #22

Closed
peteroupc opened this issue Jun 16, 2019 · 0 comments · Fixed by #32
Closed

Indexed properties are not visited #22

peteroupc opened this issue Jun 16, 2019 · 0 comments · Fixed by #32

Comments

@peteroupc
Copy link
Contributor

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); }
   }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant