Skip to main content

All Questions

1 vote
3 answers
1k views

Shortcut to change property to full property

I already have a property like this public int MyProperty{get; set;} I need to change this property as a full property like this private int myVar; public int MyProperty { get { return myVar;} ...
Alias Varghese's user avatar
180 votes
17 answers
165k views

Code snippet or shortcut to create a constructor in Visual Studio

What is the code snippet or shortcut for creating a constructor in Visual Studio? Visual Studio 2010 and C#.
user avatar
301 votes
17 answers
294k views

Shortcut to create properties in Visual Studio?

I have seen some people creating properties in C# really fast, but how did they do it? What shortcuts are available in Visual Studio (currently using Visual Studio 2010) to create ...
user avatar