Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Useful Refactoring Trick with instance variables

4.33/5 (3 votes)
18 Sep 2010CPOL 5.7K  
Visual Studio's refactoring tools are great. On a particular note, the CTRL + R, E would signal VS to generate the properties of the selected member. What it does is it turns the member private and generates the get and set properties.

However, the new property will be generated right below the field. You have no control over this. If you wait (as I did) by writing all the instance variables first and refactoring them to become private later, you would end up with a property below every field (It would seem messy). Hence, I suggest to quickly refactor every time you create an instance variable destined to be a property.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)