Convert comment to documentation comment
Property | Value |
---|---|
Id | RR0192 |
Applicable Syntax | single-line comment |
Enabled by Default | ✓ |
Usage
Example #1
before.cs
// comment
public class Foo
{
}
after.cs
/// <summary>
/// comment
/// </summary>
public class Foo
{
}
Configuration
roslynator_refactoring.convert_comment_to_documentation_comment.enabled = true|false