Skip to content

Instantly share code, notes, and snippets.

@timheuer
Created May 15, 2014 13:49
Show Gist options
  • Save timheuer/483ed1bbabf6f27c4b6f to your computer and use it in GitHub Desktop.
Save timheuer/483ed1bbabf6f27c4b6f to your computer and use it in GitHub Desktop.
VMFormatted
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string FullName
{
get { return string.Format("{0} {1}", FirstName, LastName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment