Shortcut to create properties in Visual Studio?

后端 未结 16 1878
暖寄归人
暖寄归人 2020-12-02 03:42

I have seen some people creating properties in C# really fast, but how did they do it?

What shortcuts are available in Visual Studio (currently using Visual Stu

16条回答
  •  粉色の甜心
    2020-12-02 04:24

    You could type "prop" and then press tab twice. That will generate the following.

    public TYPE Type { get; set; }
    

    Then you change "TYPE" and "Type":

    public string myString {get; set;}
    

    You can also get the full property typing "propfull" and then tab twice. That would generate the field and the full property.

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

提交回复
热议问题