﻿---
title: csharp_blank_lines_around_invocable
description: Blank lines before and after each method or constructor. 0 means leave the author's. Defaults to `0`
url: https://docs-v3-preview.elastic.dev/reference/blank-lines/csharp_blank_lines_around_invocable
---

# csharp_blank_lines_around_invocable
Blank lines before and after each method or constructor. 0 means leave the author's.

## Values


| Value       | Notes        |
|-------------|--------------|
| `<integer>` | Any integer. |

**Default:** `0`

### `csharp_blank_lines_around_invocable = 1`

```ini
csharp_blank_lines_around_invocable = 1
```

<tab-set>
  <tab-item title="Before">
    ```csharp
    namespace N;

    public class Widget
    {
        public void Run()
        {
            Console.WriteLine("run");
        }
        public void Stop()
        {
            Console.WriteLine("stop");
        }
        public void Reset()
        {
            Console.WriteLine("reset");
        }
    }
    ```
  </tab-item>

  <tab-item title="After">
    ```csharp
    namespace N;

    public class Widget
    {
        public void Run()
        {
            Console.WriteLine("run");
        }

        public void Stop()
        {
            Console.WriteLine("stop");
        }

        public void Reset()
        {
            Console.WriteLine("reset");
        }
    }
    ```
  </tab-item>
</tab-set>