How can I omit some public classes or methods from those included in the documentation generated by The SandCastle Help File Builder?
Example. I have the following public class with two public methods:
public class MyClass
{
public void Method1()
{
}
public void Method2()
{
}
}
When I create a help file from this code using SandCastle Help File Builder, I want to ignore it Method2.
source
share