Skip to main content

RCS0047: Wrap and indent each node in list

WARNING

This analyzer is obsolete. Use RCS0053 instead.

Properties

PropertyValue
Default Severitydisabled by default
Minimum language version-

Examples

Example #1

diagnostic.cs
void M(object p1,
object p2
object p3)
{
}
fix.cs
void M(
object p1,
object p2,
object p3)
{
}

Example #2

diagnostic.cs
void M(
object p1,
object p2, object p3)
{
}
fix.cs
void M(
object p1,
object p2,
object p3)
{
}

Applies to