﻿---
title: csharp_space_between_method_declaration_parameter_list_parentheses
description: Space just inside the parentheses of a parameter list. Defaults to `false`
url: https://docs-v3-preview.elastic.dev/reference/spacing/csharp_space_between_method_declaration_parameter_list_parentheses
---

# csharp_space_between_method_declaration_parameter_list_parentheses
Space just inside the parentheses of a parameter list.

## Values


| Value   | Notes |
|---------|-------|
| `true`  |       |
| `false` |       |

**Default:** `false`

### `csharp_space_between_method_declaration_parameter_list_parentheses = true`

```ini
csharp_space_between_method_declaration_parameter_list_parentheses = true
```

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

    public class Widget
    {
        public void Register(string name, int value, bool active)
        {
            Console.WriteLine(name);
        }
    }
    ```
  </tab-item>

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

    public class Widget
    {
        public void Register( string name, int value, bool active )
        {
            Console.WriteLine(name);
        }
    }
    ```
  </tab-item>
</tab-set>


### `csharp_space_between_method_declaration_parameter_list_parentheses = false`

```ini
csharp_space_between_method_declaration_parameter_list_parentheses = false
```

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

    public class Widget
    {
        public void Register( string name, int value, bool active )
        {
            Console.WriteLine(name);
        }
    }
    ```
  </tab-item>

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

    public class Widget
    {
        public void Register(string name, int value, bool active)
        {
            Console.WriteLine(name);
        }
    }
    ```
  </tab-item>
</tab-set>