Article ID: 938240 - Last Review: June 8, 2007 - Revision: 1.1
Introducing Microsoft LINQ comments and corrections
On This Page
SUMMARY
This article contains comments, corrections, and information about known errors relating to the Microsoft Press book Introducing Microsoft LINQ, 0-7356-2391-0.
The following topics are covered:
The following topics are covered:
- Page 16: dim should be var
- Page 73: A2 missing from code sample
- Page 73: as should be in
MORE INFORMATION
Page 16: dim should be var
On page 16, the first line of the C# 3.0 code sample contains the term dim instead of var.Change:
dim book =
To:
var book =
Page 73: A2 missing from code sample
On page 73, the last line is incomplete.Change:
public delegate T Func< A0, A1, A3, T > ( A0 arg0, A1 arg1, A2 arg2, A3 arg3 );
To:
public delegate T Func< A0, A1, A2, A3, T > ( A0 arg0, A1 arg1, A2 arg2, A3 arg3 );
Page 73: as should be in
On page 73, the second code sample is incorrect.Change:
from d as developers
To:
from d in developers
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.
Note: This article is from Microsoft Knowledage Base
Related problems posted by other users | |
| more... |

