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

abstract class HighScoreEntry {

  public abstract Player Player {
    get;
  } 

  public abstract int Score{
    get;
  } 
}