Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 2005 > BOOK: Beginning Visual C# 2005
|
BOOK: Beginning Visual C# 2005
This is the forum to discuss the Wrox book Beginning Visual C# 2005 by Karli Watson, Christian Nagel, Jacob Hammer Pedersen, Jon D. Reid, Morgan Skinner, Eric White; ISBN: 9780764578472
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning Visual C# 2005 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 29th, 2007, 07:06 AM
run run is offline
Registered User
 
Join Date: Jul 2007
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Default 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








Similar Threads
Thread Thread Starter Forum Replies Last Post
Dropdown menu covered by floating object BoredPorkChop CSS Cascading Style Sheets 1 January 17th, 2005 04:56 AM
Can't get errors to display with <html:errors> michaeldill JSP Basics 0 August 2nd, 2004 01:47 PM
errors and fixing errors Droopy XML 0 August 26th, 2003 12:47 AM
Errors Errors DB Errors Ljhopkins VS.NET 2002/2003 0 July 15th, 2003 12:42 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.