dotnet/roslyn

Change signature adds unnecessary argument names

开放

#40,489 创建于 2019年12月19日

 (2 条评论) (0 个反应) (0 位负责人)C# (4,257 个派生)batch import
Area-IDEConcept-Continuous Improvementhelp wanted

仓库指标

星标
 (20,414 个星标)
PR 合并指标
 (平均合并 6天 17小时) (30 天内合并 256 个 PR)

描述

Version Used: 16.5.0 Preview 2.0 [29615.19.master]

Steps to Reproduce:

class Program
{
    static void F(int a, int b, int c)
    {
    }

    static void Main()
    {
        F(1, b: 2, 3);
    }
}
  1. Invoke change signature on F
  2. Move parameter a to the end of the signature.

image

Expected Behavior:

class Program
{
    static void F(int b, int c, int a)
    {
    }

    static void Main()
    {
        F(b: 2, 3, 1);
    }
}

Actual Behavior:

class Program
{
    static void F(int b, int c, int a)
    {
    }

    static void Main()
    {
        F(b: 2, c: 3, a: 1);
    }
}

贡献者指南