Depending on the feedback I receive, I can raise this “standard” with my colleagues. This may become the usual StyleCop rule. is there already written?
So Stylecop already dictates this for documentation tags summary, paramand return.
Do you think it makes sense to demand the same from comments?
Relative note: if the comment is already long, should it be written down as the correct sentence?
For example (maybe I tried too hard to illustrate a bad comment):
//if exception quit
against.
If it appears - in most cases, if someone writes a comment, then it can be informative. Consider these two examples:
if (exc != null)
{
Application.Exit(-1);
}
and
if (exc != null)
{
Application.Exit(-1);
}
, , , , , .
, . , .Net?
.