Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have seen some people creating properties in C# really fast but I don't know how they did it.

Does anyone know what short cut are available in Visual Studio (currently using 2010) to create properties?

I am using C#.

ex.

public string myString {get;set;}

Thanks.

share|improve this question

7 Answers

up vote 61 down vote accepted

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;}
}
share|improve this answer
Didn't know about this, thanks. – Mike Oct 6 '10 at 9:53
3  
You have forgotten to name it "Code Snippet" :) – PVitt Oct 6 '10 at 10:10
@PVitt:Thanks I did not know the name :-) – Amra Oct 6 '10 at 10:15
You can also create your own snippets with the snippet editor. – Johann Blais Oct 6 '10 at 11:38
1  
also, propg will create: public int MyProperty { get; private set; } – Andrei Cristof Nov 26 '12 at 0:17
show 2 more comments

Additionaly to Cesar Lopez answer, you can find other snippets by typing Ctrl k Ctrl x (mapped to Edit.InsertSnippet in my Visual Studio).

share|improve this answer
Nice it is slower but you get the full list of short cuts +1. – Amra Oct 6 '10 at 10:06
I love you! been looking for this for a while now – Matt Case Dec 28 '12 at 23:36

See my previous answer/tip

Basically click inside of your field private int _i; and then Ctrl R + E to create the standard property accessors.

share|improve this answer

Resharper offers property generation in its extensive feature set. (It's not cheap though, unless you're working on an open-source project.)

share|improve this answer

I think Alt+R+F is the correct one for creating property from a variable declaration

share|improve this answer

Type "propfull" , it is much better to use

It will generate Propery and private variable

type "propfull" twice TAB

share|improve this answer

Follow these steps based on your requirement in Visual Studio 2010.

  1. Simple property, type prop and press tab.
  2. Simple property with backing field, type propfull and press tab.
  3. Simple property with private set, type propg and press tab.
  4. Dependency property, type propdp and press tab.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.