View Single Post
Old 12-09-2008, 09:14 PM   #3 (permalink)
masfenix
The Contributor
 
Join Date: Mar 2008
Posts: 31
Thanks: 1
masfenix is on a distinguished road
Default

Most of my private variables start with just underscore. And then all of my properties contain the proper case for that variable.

Code:
private string _name;

public string Name{ get { return _name; } set { _name = value }};
masfenix is offline  
Reply With Quote