Skip to main content

Convert comment to documentation comment

PropertyValue
IdRR0192
Applicable Syntaxsingle-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