Combined Errata
Page 9
Line 15 should read ""the JIT will need to recompile your program into CPU instructions when it is run again."
Page 13
The sentence immediately above "MODIFYING THE VS .NET - GENERATED CODE" references Class.1.cs., it should read read "Class1.cs"
Line 22 Window listing should read "you can switch" not "you can like switch" - delete the word "like".
Page 23
Table 2.1
in the 5th row there is desc. about integer
int Int32 4 -2,147,483,647 to 2,147,483,647
and that is not true it should start from
-2,147,483,648 so the folowing line should be
int Int32 4 -2,147,483,648 to 2,147,483,647
Page 55
The Note on 55 should be rewritten,
The Note should read:
Note: The And and Or operators in C# perform short-circuit evaluation. If the first expression in an And is false, then the whole will be
false. The value of the second expression is thus irrelevant, and C# will not even evaluate it. Similarly, if the first expression in an Or
is true, then the whole will be true, and the second expression will not be evaluated. Page 127
4th paragraph,
'popped of the stack' should be
'popped off the stack'
Page 275
2nd to last line under DAYOFYEAR PROPERTY, the date referenced should be 3/24/2002, not 3/34/2002.
Page 346
9 lines from bottom of page.
... where value is the value to find in arrayList. If value is found, the methods return true; otherwise they return false." There is a mistake in saying "the methods return
true;...".
Should read:
"the first method returns true, and the 2nd and 3rd methods return the index of an occurance." Page 604
NOTE at top of page,
Here is the clarification:
NOTE: Threads can cross application domain boundaries, but at any given
time each thread will be executing in only a single application domain.
The GetDomain method of the Thread object returns a reference to the
application domain in which the thread is executing. Page 812
Remove Lines 41 & 42
Delete these lines at the bottom of the page..
//run the stored procedure
MySqlCommand.ExecuteNonQuery();
|