我已经制作了一个小代码片段来为WPF数据绑定创建一个属性:
private string property;
public string Property
{
get { return this.property; }
set
{
this.property = value;
this.OnPropertyChanged(() => Property);
}
}
在Camel Case中创建字段名称并在Pascal Case中重写属性非常麻烦。有没有办法只写字段,让片段使用字母的名称写入属性,第一个字符是大写?
答案 0 :(得分:8)
不幸的是,Visual Studio代码段功能中没有此类逻辑。 必须输入两个名字才是最好的。
以下是创建代码段时可用的唯一“功能”。 MSDN Code Snippet Functions
像Resharper这样的产品提供了出色的代码片段(称为Resharper中的模板)功能,能够在片段中更改其他替换的大小,以及许多其他有用的功能。 Resharper Template Info
例如,您会对此宏感兴趣:
“另一个变量的值,第一个字符为小写”