File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
docs/fundamentals/code-analysis/style-rules Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -34,18 +34,18 @@ Options specify the behavior that you want the rule to enforce. For information
34
34
35
35
### csharp_style_allow_blank_lines_between_consecutive_braces_experimental
36
36
37
- | Property | Value | Description |
38
- | --------------------------| ----------------------------------------------| -------------|
39
- | ** Option name** | ` csharp_style_allow_blank_lines_between_consecutive_braces_experimental ` | |
40
- | ** Option values** | ` true ` | Allow blank lines between consecutive braces |
41
- | | ` false ` | Don't allow blank lines between consecutive braces |
42
- | ** Default option value** | ` true ` | |
37
+ | Property | Value | Description |
38
+ | --------------------------| -------------------------------------------------------------------------- | --------------------------------------- -------------|
39
+ | ** Option name** | ` csharp_style_allow_blank_lines_between_consecutive_braces_experimental ` | |
40
+ | ** Option values** | ` true ` | Allow blank lines between consecutive braces |
41
+ | | ` false ` | Don't allow blank lines between consecutive braces |
42
+ | ** Default option value** | ` true ` | |
43
43
44
44
## Example
45
45
46
46
``` csharp
47
47
// csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true
48
- public void Method
48
+ public void Method ()
49
49
{
50
50
if (true )
51
51
{
@@ -57,7 +57,7 @@ public void Method
57
57
58
58
``` csharp
59
59
// csharp_style_allow_blank_lines_between_consecutive_braces_experimental = false
60
- public void Method
60
+ public void Method ()
61
61
{
62
62
if (true )
63
63
{
You can’t perform that action at this time.
0 commit comments