Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          associative-arrays/person.cs - 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

}