Errata

Programming Microsoft® LINQ

Errata for Programming Microsoft® LINQ

The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.

Color key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted By Date submitted Date corrected
Printed
Page 606

"string_fieldName" should be "string fieldName"
On page 606, the fourth line of the third code sample contains an incorrect underscore.



Change:

private readonly string_fieldName;To:

private readonly string fieldName;

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.

Microsoft Press  Jul 13, 2010 
Printed
Page 593

formatIT should be formatUS and vice versa On page 593, the 9th and 13th line of the code sample are incorrect. Change: return String.Format( formatIT, "{0:#,0.00}", d ); } public static string FormattedIT( decimal d ) { return String.Format( formatUS, "{0:#,0.00}", d );To: return String.Format( formatUS, "{0:#,0.00}", d ); } public static string FormattedIT( decimal d ) { return String.Format( formatIT, "{0:#,0.00}", d );

Microsoft Press  May 06, 2010