Brendan McKenzie brendanmckenzie
- Melbourne, Australia
- Sign in to view email
- http://www.brendanmckenzie.com/
View gist:6088912
/* long-hand */ | |
public class MyClass | |
{ | |
string _myString; | |
public string MyString | |
{ | |
get { return _myString; } | |
set { _myString = value; } | |
} |