Skip to content

Instantly share code, notes, and snippets.

@thunklife
Created December 27, 2011 17:29
Show Gist options
  • Select an option

  • Save thunklife/1524472 to your computer and use it in GitHub Desktop.

Select an option

Save thunklife/1524472 to your computer and use it in GitHub Desktop.
Basic Person Class
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string MiddleName { get; set; }
public override string ToString()
{
return string.Format("{0} {1} {2}", FirstName, MiddleName, LastName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment