csharp_place_simple_enum_on_single_line
Allow a short enum body to stay on one line.
| Value | Notes |
|---|---|
true |
|
false |
Default: true
csharp_place_simple_enum_on_single_line = true
namespace N;
public enum Status
{
Active,
Inactive,
Pending,
}
namespace N;
public enum Status
{
Active,
Inactive,
Pending,
}
csharp_place_simple_enum_on_single_line = false
namespace N;
public enum Status
{
Active,
Inactive,
Pending,
}
namespace N;
public enum Status
{
Active,
Inactive,
Pending,
}