CodeAnalysis.ParameterWrapper 1.2.0

dotnet add package CodeAnalysis.ParameterWrapper --version 1.2.0
NuGet\Install-Package CodeAnalysis.ParameterWrapper -Version 1.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CodeAnalysis.ParameterWrapper" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CodeAnalysis.ParameterWrapper --version 1.2.0
#r "nuget: CodeAnalysis.ParameterWrapper, 1.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CodeAnalysis.ParameterWrapper as a Cake Addin
#addin nuget:?package=CodeAnalysis.ParameterWrapper&version=1.2.0

// Install CodeAnalysis.ParameterWrapper as a Cake Tool
#tool nuget:?package=CodeAnalysis.ParameterWrapper&version=1.2.0

ParameterWrapper

NuGet Status

This analyzer helps to organize method/constructor/delegate parameters nicely in your C# program. You'll find it extremely helpful in projects of a certain size with DI containers configured, long type names and/or methods with many parameters declared.

Installation

The analyzer can be installed:

  • globally using the Visual Studio 2019 Extension (link)
  • individually (per-project) using the NuGet package (link)

Example

Consider the following method declarations:

class Test
{   
    public void Foo(int a)
    {
    }
    
    public void Foo(int a, int b)
    {
    }
    
    public void Foo(int a, int b, int c)
    {
    }
}

Below is formatting the analyzer will suggest:

class Test
{   
    public void Foo(int a)
    {
    }
    
    public void Foo
    (
        int a,
        int b
    )
    {
    }
    
    public void Foo
    (
        int a,
        int b,
        int c
    )
    {
    }
}

Demo

ParameterWrapper

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.0 5,781 8/25/2021
1.1.0 3,142 8/8/2021
1.0.0 5,496 12/6/2020