0

How can I configure GhostDoc to comment only public accessors only? I've looked at the "rules" configuration, but did not see any information/variables indicating accessor type.

d.moncada
  • 16,900
  • 5
  • 53
  • 82

1 Answers1

0
if (Context.CurrentCodeElement.IsPrivate)
{
    throw new ArgumentException();
}

from http://community.submain.com/forums/thread/2993.aspx

Rob
  • 11
  • 1