最佳答案
Suppose I have this interface
public interface IFoo
{
///<summary>
/// Foo method
///</summary>
void Foo();
///<summary>
/// Bar method
///</summary>
void Bar();
///<summary>
/// Situation normal
///</summary>
void Snafu();
}
break;
And this class
public class Foo : IFoo
{
public void Foo() { ... }
public void Bar() { ... }
public void Snafu() { ... }
}
case HtmlNodeType.Text:
Is there a way, or is there a tool that can let me automatically put in the comments of each member in a base class or interface?
// script and style must not be outputBecause I hate re-writing the same comments for each derived sub-class!