Skip to main content

Wrap arguments

PropertyValue
IdRR0048
Applicable Syntaxargument list
Enabled by Default

Usage

Example #1

before.cs
M(x, y, z);
after.cs
M(
x,
y,
z);

Example #2

before.cs
void M(
x,
y,
z);
after.cs
void M(x, y, z);

Configuration

roslynator_refactoring.wrap_arguments.enabled = true|false