The code at the bottom of p. 19 reads:
//Version two
try { MyType t1; t = (MyType)o;
It should be:
try { MyType t1; t1 = (MyType)o;
No Comments