12-09-2008, 09:14 PM
|
#3 (permalink)
|
|
The Contributor
Join Date: Mar 2008
Posts: 31
Thanks: 1
|
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 }};
|
|
|
|