如何使用 Resharper 结构查找和替换将 C# 对象初始值设定项转换为使用构造函数

How to convert a C# object initializer to use a constructor using Resharper structural find and replace

我想使用 Resharper 结构搜索和替换模板来自动替换示例:

new Fruit { Name = "Apple", IsTasty = true }

有了这个:

new Fruit("Apple", true)

(注意,需要的构造函数已经存在)

我试过像这样的各种组合:

new $type$ { Name = $name$, IsTasty = $isTasty$ };

...使用各种不同的占位符类型,但 R# 在我的代码中找不到任何示例。有人做过吗?

默认情况下,R# 似乎将您的占位符视为标识符,模式匹配失败。

双击右侧的每个占位符,将 "identifier" 更改为 "expression"。

所以我只是在 resharper(我认为是 9.0.2)中做了这个

创建模式:FruityChange

  • new $type$ { 名称 = $param1$, IsTasty = $param2$ }
  • $type$ 是一种类型
  • $param1$ 是字符串类型的表达式
  • $param2$ 是 bool 类型的表达式
  • 模式严重性"Show as error"

和class水果

public class Fruit
{
    public Fruit(string name, bool isTasty)
    {
        Name = name;
        IsTasty = isTasty;
    }

    public string Name { get; set; }
    public bool IsTasty { get; set; }
}

在代码编辑器中为表达式加下划线,alt-tab 为我提供了 "Replace With" 选项。它至少可以在我的机器上运行:-)