Wiley.com
Print this page Share

Professional Refactoring in C# & ASP.NET

ISBN: 978-0-470-43452-9
Paperback
552 pages
April 2009
Professional Refactoring in C# & ASP.NET (047043452X) cover image
This title is out-of-print and not currently available for purchase from this site.

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
10 Error in Code
The last line in "More Readable Code" column in the table on the page 10 should read as follow:

portfolio.SelectNodes("//stocks[1]/*")
11/8/2010
39 Error in Code
There is an faulty space between myPatient. and IdealBodyWeightMale();

It should be:

myPatient.IdealBodyWeightMale().
8/11/09
2, Figure 6-5 62 Error in Text
Typo:

btnVeiw

should be:

btnView

07/22/2010
301 Error in Code
if (History.Total > 3000)

Should be:

if (History.Total > 3000 & History.Total < 10000)
8/11/09
337 Error in Text
on page 337, on line 3 instead of:
errorForm.ShowErrorMessage(e.Message);
should say:
errorForm.ShowErrorMessage(message);
2-16-11
Back to Top