Person.cs
Program.cs
 

using System;
namespace MyApplication
{
  class Person
  {
    public string Name    // property
    { get; set; }  
  }
}
Result:
Liam