Errors discovered not covered by errata
Errors dicovered in Beginning Visual C#2005 not covered by errata:
p.149 Reference to Chapter 12 should be Chapter 13.
p.908 Reference to Chapter 22 should be Chapter 27
p.715 Readline() should be Readkey() (still works though so not really an error)
p.725 1000 times should be 100 times
p.289 Code is wrong:
if (min < 2)
{
min = 2;
}
min = minimum;
max = maximum;
Should be:
min = minimum;
max = maximum;
if (min < 2)
{
min = 2;
}
p.751 Figure 23-4 Column story_Id in Figure is not there if you follow the exercise.
p.973 Step 4: Also import System.IO
|