134
The
DrawableRectangle class definition has a
Bounds method, but really means to have a
GetBounds method to match the
IDrawable interface.
141
The sentence:
It saves the result returned by BeginInvoke, which is an IAsynchResult object.
should read:
It saves the result returned by BeginInvoke, which is an IAsyncResult object.
147
The example code:
Code:
Piece[] Board = new Piece[8, 8];
should actually have a comma in the first set of brackets, for the syntax for initializing a multi-dimensional array:
Code:
Piece[,] Board = new Piece[8, 8];