Skip to main content

Wrap parameters

PropertyValue
IdRR0053
Applicable Syntaxparameter list
Enabled by Default

Usage

Example #1

before.cs
void M(object x, object y, object z)
{
}
after.cs
void M(
object x,
object y,
object z)
{
}

Example #2

before.cs
void M(
object x,
object y,
object z)
{
}
after.cs
void M(object x, object y, object z)
{
}

Configuration

roslynator_refactoring.wrap_parameters.enabled = true|false