What Visual Studio provides for you, are the Code Snippets .
With this feature, you are able to create several different types of code snippets.
Within the scope of a class, by enabling Code Completion , you can filter all available snippets .
OnethatIusealotisctor
whichcreatesaconstructorfortheclass.
Fortheimplementationofacompleteproperty,youcanusepropfull
.Thatitwillcreatethefollowingimplementationforyou:
privateintmyVar;publicintMyProperty{get{returnmyVar;}set{myVar=value;}}
TouseSnippet,youcantypeitnormallyandafterpressingTabonyourkeyboard.
Thereisnomagic,somethingyouwillhavetotypetobeabletousefeaturesthatacceleratedevelopment.
Anotherinterestingfeaturethatcanhelpyoualot,is Quick Actions , which can be fired with the shortcut Ctrl+.
.