public string FirstName {get; set;}
public string LastName {get; set;}
public DateTime Birthday {get; set;}
public int HeightInInches {get; set;}
public string HeightInFeetInches(){
return $"{HeightInInches/12}' {HeightInInches%12}\"";}
public string GetFullName(){
return $"{FirstName} {LastName}";
return DateTime.Now.Year - Birthday.Year;
public static void Main()
Console.WriteLine("Hello World");
Person human = new Person();
Person human2 = new Person();
human.FirstName = "Angel";
human.Birthday = new DateTime(1994, 5, 13);
human.HeightInInches = 63;
human2.FirstName = "Biscuit";
human2.Birthday = new DateTime(2016, 6, 4);
Console.WriteLine($"{human.GetFullName()} is {human.GetAge()} years old. {human.HeightInFeetInches()}");
Console.WriteLine($"{human2.GetFullName()} {human2.Birthday}");