How to automatically have Visual Studio 2008 convert fields to properties.
Type the following:
public String _Title;
Right click the “_Title”, select Refactor, Encapsulate Field…
Select the new Property name:
After Visual Studio Encapsulates the field, Select Apply
Visual Studio will generate the new property.