Back to notes -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'  next -- Keyboard shortcut: 'n'  Slide program -- Keyboard shortcut: 't'    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);

}