Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/fundamentals/code-analysis/style-rules/ide2002.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,18 @@ Options specify the behavior that you want the rule to enforce. For information

### csharp_style_allow_blank_lines_between_consecutive_braces_experimental

| Property | Value | Description |
|--------------------------|----------------------------------------------|-------------|
| **Option name** | `csharp_style_allow_blank_lines_between_consecutive_braces_experimental` | |
| **Option values** | `true` | Allow blank lines between consecutive braces |
| | `false` | Don't allow blank lines between consecutive braces |
| **Default option value** | `true` | |
| Property | Value | Description |
|--------------------------|--------------------------------------------------------------------------|----------------------------------------------------|
| **Option name** | `csharp_style_allow_blank_lines_between_consecutive_braces_experimental` | |
| **Option values** | `true` | Allow blank lines between consecutive braces |
| | `false` | Don't allow blank lines between consecutive braces |
| **Default option value** | `true` | |

## Example

```csharp
// csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true
public void Method
public void Method()
{
if (true)
{
Expand All @@ -57,7 +57,7 @@ public void Method

```csharp
// csharp_style_allow_blank_lines_between_consecutive_braces_experimental = false
public void Method
public void Method()
{
if (true)
{
Expand Down
Loading