CLR via C#, Second Edition comments and corrections (919162)



The information in this article applies to:

  • CLR via C#, Second Edition, ISBN 0-7356-2163-2

SUMMARY

This article contains comments, corrections, and information about known errors relating to the Microsoft Press book CLR via C#, Second Edition, 0-7356-2163-2.

The following topics are covered:

  • Pages 110 - 116: GetProgressReport should be GenProgressReport (x3)
  • Page 168: 0 should be startIndex
  • Page 320: "Boxing occurs here" should be "Boxing doesn't occur here"

MORE INFORMATION

Pages 110 - 116: GetProgressReport should be GenProgressReport (x3)

On pages 110 through 116, in Figures 4-6, 4-7, 4-8, 4-9, 4-10, 4-11, 4-12 and 4-13, there is an error in the code.

All references to:

GetProgressReport


Should read:

GenProgressReport


Page 168: 0 should be startIndex

On page 168, in the code sample at the bottom of the page, there is an error in the second Find function code.

Change:

return Find(value, 0, m_length);


To:

return Find(value, startIndex, m_length);


Page 320: "Boxing occurs here" should be "Boxing doesn't occur here"

On page 320, in the second line from the top,

Change:

"Boxing occurs here"

To:

"Boxing doesn't occur here"

Microsoft Press is committed to providing informative and accurate books. All comments and corrections listed above are ready for inclusion in future printings of this book. If you have a later printing of this book, it may already contain most or all of the above corrections.

The print number of the book is located on the copyright page in the form of a string of numbers. For example: "2 3 4 5 6 7 8 0 QWT 9 8 76 5 4". The first number in the string is the the print number. In this example, the print number is 2.

Modification Type:MajorLast Reviewed:5/11/2006
Keywords:KB919162