Reputation: 1098
I'm using VSDocMan for generating help document.
Consider I'm having following methods
But I want to include methods(Method1 & method3 only) in my documentation. Is there any option in VSDocMan to do this?
Upvotes: 0
Views: 121
Reputation: 1098
Yeah. I found answer...
If we use the tag compilewhen = never, the method will not be included in the documentation...
/// <compilewhen>never</compilewhen>
public void Method2()
{
}
Upvotes: 1