是否有可能改变用于实现在Visual Studio 2008的接口存根?
举例来说,当我选择使用
Implement interface 'IMyInterface'
要么
Explicitly implement interface 'IMyInterface'
而不是数字看起来像这样的属性:
public string Comment
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
}
我想我的属性,使用C#3.0自动实现的属性,并期待这样的:
public string Comment {get;set;}
我想这样做是为了避免强迫该接口是一个抽象类。
我已经通过在Visual Studio文件夹中的片段看,但我没有看到任何这将是适当的。 我也一派,如此搜查,并没有发现什么。
如果这是不可能的,没有任何人有一个宏,我可以偷?
谢谢。
编辑:我曾尝试编辑位于该片段C:\Program Files\Microsoft Visual Studio 9.0\VC#\Snippets\1033\Refactoring
,但这些变化不会改变实现。 我试着做了修改,然后重新打开Visual Studio中,这是行不通的。 难道我做错了什么吗?