开发者

Visual Studio keyboard short-cut to complete default accessors {get; set;}

开发者 https://www.devze.com 2023-01-01 06:49 出处:网络
I am looking for a keyboard short-cut to com开发者_StackOverflowplete creating the default accessors for a property in a C# class.

I am looking for a keyboard short-cut to com开发者_StackOverflowplete creating the default accessors for a property in a C# class.

Something like...

I start typing:

public int Id 

Then I press one or more keys, and I endup with:

public int Id { get; set; }


The shortcut is the trigger "prop":

proptabtabinttabIdtab

and you end up with:

public int Id { get; set; }


Try with propfull , then TAB Twice and you'll get:

private int myVar;

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


You could also create a custom snippet:

<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
    <CodeSnippet Format="1.0.0">
        <Header>
            <Title>GetSet</Title>
            <Description>Inserts getter/setter shorthand code</Description>
            <Shortcut>gs</Shortcut>
        </Header>
        <Snippet>
            <Code Language="CSharp">
                <![CDATA[{ get; set; }$end$]]>
            </Code>
        </Snippet>
    </CodeSnippet>
</CodeSnippets>


The shortcut is using CTRL+R and then CTRL+E. Press these keys after writing:

int loginID;

Then you will get the following encapsulation:

    int loginID;

    public int LoginID
    {
        get { return loginID; }
        set { loginID = value; }
    }
0

精彩评论

暂无评论...
验证码 换一张
取 消