shortcut to create property in c# code example
Example 1: shortcut to create property in c#
ou could type "prop" and then press tab twice. That will generate the following.
public TYPE Type { get; set; }
Example 2: property shortcut visual studio
public TYPE Type { get; set; }