为什么resharper找不到这种语义模式

时间:2016-11-18 06:20:16

标签: c# visual-studio refactoring editor resharper

我希望使用reshaper来匹配模式

来替换所有的INPC代码
private $type$ _$id$;
public $type$ $name$
{
    get { return _$id$; }
    set { RaiseAndSetIfChanged(ref _$id$, value); 
}

并将其替换为

[Reactive] 
public $type$ $name$ { get; set;}     

但是,resharper警告我“模式是模棱两可的”。我原以为上面的语义搜索和替换正是“用模式搜索”工具设计的目的。有关如何使其工作的任何想法。我并不特别想尝试使用正则表达式来完成这项工作。

enter image description here

0 个答案:

没有答案