<t>You could type "prop" and then press tab twice. That will generate the following.<br/>
<br/>
public TYPE Type { get; set; }<br/>
<br/>
```<br/>
<br/>
Then you change "TYPE" and "Type":<br/>
<br/>
```<br/>
public string myString {get; set;}<br/>
<br/>
```<br/>
<br/>
You can also get the full property typing "propfull" and then tab twice. That would generate the field and the full property.<br/>
<br/>
```<br/>
private int myVar;<br/>
<br/>
public int MyProperty<br/>
{<br/>
get { return myVar;}<br/>
set { myVar = value;}<br/>
}<br/>
<br/>
```</t>