WILEY

KNOWLEDGE FOR GENERATIONS

WILEY - KNOWLEDGE FOR GENERATIONS

United States Change Location

cart.gif CART |  MY ACCOUNT |  CONTACT US |  HELP    
Cover image for product 0470261293
Beginning C# 3.0: An Introduction to Object Oriented Programming
ISBN: 978-0-470-26129-3
Paperback
523 pages
May 2008
US $39.99 Add to Cart

This price is valid for United States. Change location to view local pricing and availability.

Other Available Formats: Adobe E-Book
  • Description
  • Table of Contents
  • Author Information
  • Errata
  • Download

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
43 Error in Table
In the table on page 43, it should be txtDisplayOutput instead of txtResult.

The code is correct as is the narrative. Only the table is wrong.
05/21/2008
44 Error in Code
" City: " + txtAddress.Text +

should be:

" City: " + txtCity.Text +
06/26/2008
65 Error in Code
"as larget as e<sup>38</sup>"

should be:

"as larget as 10<sup>38</sup>"
6/23/2008
144 Error in Code
In the code after the ?Nested If Statements? heading, the code says

Price = FULLPRICE; If (age => 21)

But it should say ?>=? not ?=>?
06/25/2008
150/151 Clarification
"case 1" repeated should be case 1, case 2, case 3,....
06/23/2008
151 Error in Code
The code at the top of the page should contain several cases for the switch statement. Your code has a switch statement with three ?case 1?s.
06/25/2008
301 Error in Code
second line of code from the bottom says:

mySort.quickSort(data.Length-1); // Sort the data

The function quickSort takes two parameters and it should be

mySort.quickSort(0, data.Length-1); // Sort the data
06/25/2008
465 Error in Code
If (answer == 0)

Should be:

if (answer == 0)
06/09/08