Property | Value |
---|---|
Id | RR0192 |
Title | Replace comment with documentation comment |
Syntax | single-line comment |
Enabled by Default | ✓ |
// comment
public class Foo
{
}
/// <summary>
/// comment
/// </summary>
public class Foo
{
}
(Generated with DotMarkdown)