Click here to Skip to main content
15,893,594 members
Articles / Programming Languages / C#
Tip/Trick

Useful Refactoring Trick with instance variables

Rate me:
Please Sign up or sign in to vote.
4.33/5 (3 votes)
18 Sep 2010CPOL 5.6K   2  
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)


Written By
Philippines Philippines
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --