Wrox Programmer Forums
|
BOOK: Professional Refactoring in C# & ASP.NET
This is the forum to discuss the Wrox book Professional Refactoring in C# & ASP.NET by Danijel Arsenovski; ISBN: 9780470434529
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Professional Refactoring in C# & ASP.NET 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 September 8th, 2009, 09:11 AM
Lee Dumond's Avatar
Wrox Author
 
Join Date: Jan 2008
Posts: 923
Thanks: 12
Thanked 166 Times in 162 Posts
Default Errata on page 83

The exception thrown near bottom of page has invalid arguments. Should be:

Code:
public double HeightInInches
{
   get { return heightInInches; }
   set
   {
      if (value <= 60)
      {
         throw new ArgumentOutOfRangeException("value", "Height must be greater than 5 feet (60 inches).");
      }
      heightInInches = value;
   }
}
__________________
Visit my blog at http://leedumond.com
Follow me on Twitter: http://twitter.com/LeeDumond

Code:
if (this.PostHelpedYou)
{
   ClickThanksButton(); 
}





Similar Threads
Thread Thread Starter Forum Replies Last Post
Errata: Page 453 drupalmeister BOOK: Beginning PHP 6, Apache, MySQL 6 Web Development ISBN: 9780470391143 0 June 22nd, 2009 01:44 AM
Errata: Page 477 drupalmeister BOOK: Beginning PHP 6, Apache, MySQL 6 Web Development ISBN: 9780470391143 0 June 22nd, 2009 01:40 AM
Errata page 182 tpangborn BOOK: Ivor Horton's Beginning Visual C++ 2005 0 May 21st, 2006 09:19 PM
TI-83 Ion for Windows reverand Assembly Language 0 May 10th, 2006 11:39 AM
Errata Page bonehead BOOK: Beginning PHP, Apache, MySQL Web Development ISBN: 978-0-7645-5744-6 2 June 27th, 2004 08:45 AM





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