Skip to content

Instantly share code, notes, and snippets.

@mikecole
Created February 17, 2014 03:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikecole/9044152 to your computer and use it in GitHub Desktop.
Save mikecole/9044152 to your computer and use it in GitHub Desktop.
public class Person
{
private string _firstName;
private string _lastName;
private int _age;
public string FirstName
{
get
{
return _firstName;
}
set
{
_firstName = value;
}
}
public string LastName
{
get
{
return _lastName;
}
set
{
_lastName = value;
}
}
public int Age
{
get
{
return _age;
}
set
{
_age = value;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment