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

abstract class PuzzleCollection {
  
  public abstract string Count{
    get;
  } 

  public abstract Puzzle this[int i]{
    get;
  }

  public abstract void Add(Puzzle p);

}