在Visual Studio中创建属性的快捷方式?

我见过一些人用C#创建属性的速度非常快,但他们是如何做到的?

Visual Studio中有哪些快捷方式可用(目前使用Visual Studio 2010)来创建属性?

我正在使用C#。

例如,

public string myString {get;set;}

您可以键入“prop”,然后按两次选项卡。 这将产生以下内容。

public TYPE Type { get; set; }

然后你改变“TYPE”和“Type”:

public string myString {get; set;}

您还可以获得完整属性,输入“propfull”,然后选择两次。 这将产生该领域和完整的财产。

private int myVar;

public int MyProperty
{
    get { return myVar;}
    set { myVar = value;}
}

除了Amra的回答,您还可以通过输入查找其他片段

Ctrl + K,Ctrl + X

其中映射到Visual Studio中的Edit.InsertSnippet,并向您显示可用摘录的完整列表。


将光标放在字段中private int _i; 然后选择编辑菜单或人民币 - 重构 - 封装字段...(CtrlR,CtrlE)来创建标准属性访问器。

链接地址: http://www.djcxy.com/p/49345.html

上一篇: Shortcut to create properties in Visual Studio?

下一篇: Locate current file in IntelliJ