Disable "missing XML comment" warning on default constructors and/or overridden members



I've enabled Visual Studio's "Missing XML comment" warning on public types and members; however I don't see the point of writing



/// <summary>
/// Constructs a Foo object.
/// </summary>
public Foo()


every time. Also one of the few things I found better in Java/Eclipse was that it didn't complain about missing documentation comments on @Override members; it even warned me if I wrote one that it will be ignored.


So is there a way to disable the warnings on default constructors and/or override members?


No comments:

Post a Comment