Skip to content

Instantly share code, notes, and snippets.

View brendanmckenzie's full-sized avatar

Brendan McKenzie brendanmckenzie

View GitHub Profile
/* long-hand */
public class MyClass
{
string _myString;
public string MyString
{
get { return _myString; }
set { _myString = value; }
}