Created
May 15, 2014 13:49
-
-
Save timheuer/483ed1bbabf6f27c4b6f to your computer and use it in GitHub Desktop.
VMFormatted
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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