Wrox Programmer Forums
|
BOOK: Professional .NET 2.0 Generics
This is the forum to discuss the Wrox book Professional .NET 2.0 Generics by Tod Golding; ISBN: 9780764559884
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Professional .NET 2.0 Generics 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 May 27th, 2013, 06:35 AM
Registered User
 
Join Date: May 2013
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Default Chapter 4 issues, p. 78, 81

Page 78, C# code is:

Code:
this.children = new List<String>();
should be:

Code:
this.children = new List<T>();
Page 81, C# code is:

Code:
if (typeof(T).ToString() == value.ToString())
should be:

Code:
if (typeof(T).ToString() == value.GetType().ToString())

Last edited by krzys18asp; May 27th, 2013 at 06:37 AM..





Similar Threads
Thread Thread Starter Forum Replies Last Post
Pages 75 & 78 Rachel BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3 18 July 5th, 2010 08:18 AM
Debug example seemingly not quite right on page 78 kowalke BOOK: Beginning Mac OS X Programming 5 August 17th, 2006 02:04 PM
Example on page 80 RWDelPorto BOOK: Beginning VB.NET Databases 5 March 15th, 2005 06:16 AM
downloads for VB Oracle 8 1-861001-78-9 johnfreed0 All Other Wrox Books 6 September 23rd, 2004 07:22 PM
Chapter 4 issues HenryT BOOK: Professional SQL Server Reporting Services ISBN: 0-7645-6878-7 1 June 9th, 2004 02:49 PM





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