Ramesh Kannan
Ramesh Kannan

Reputation: 1098

How to hide methods while documenting using VSDocMan?

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

Answers (1)

Ramesh Kannan
Ramesh Kannan

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

Related Questions