Back to slide -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'  next -- Keyboard shortcut: 'n'          hangman-06-abstract/hangman.cs - The class Player.Lecture 1 - slide 22 : 22
Program 3

abstract class Player {

  public abstract string Name{
    get;
  }

}