Created
December 27, 2011 17:29
-
-
Save thunklife/1524472 to your computer and use it in GitHub Desktop.
Basic Person Class
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 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