Browse by Tags
All Tags »
Item 3 (
RSS)
missing char 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;
You could easily mis-interpret what I said about the as and is operators At the bottom of page 18, in Item 3, I wrote this sentence: "If a particular object is not the requested type or is derived...
2nd paragraph The sentence "The as operator returns true ..." Should read "The is operator returns true ..."
missing words The sentence that says, "If you made a create a Newtype" should be "If you made a new class derived from Newtype"