Back to notes -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'  Slide program -- Keyboard shortcut: 't'    The class Person.Lecture 5 - slide 15 : 29
Program 1
public class Person{

  private string name;

  public Person (string name){
    this.name = name;
  }

  public string Name{
    get {return name;}
    set {name = value;}
  }

  // Other methods

}