Re: First paragraph after Listing 1.17
It's the little things that seem to jump out at me while at the same time I'll miss something glaring like 2+2=5
To clarify, by in isolation I mean doing things like this:
[begin example]
Here is an example of an extension method:
public static void WriteToConsole(this object o)
{
Console.WriteLine(o)
}
[end example]
I actually saw that in a Microsoft presentation.
I find that when I show people it's related to things like MyList.Where and illustrate that Where is implemented with an extension method, the lights immediately come on and there's that "Now I get it!" moment.
Here are a couple more minor things I noticed, right or wrong.
Section 1.1.5
"Its important to understand that LINQ is flexible, too: you can write your own query translators."
Should the colon be a semi-colon?
Section 1.2.1
"the servlet API and JavaServer Pages"
Space between Java and Server. (I have no idea if there should be or not)
Section 1.2.4
"The last collection of items in this somewhat potted history is .NET 3.5, C# 3, VB9 and Visual Studio
2008. (Still to be written as theyre released
)"
Alrighty then, get to work.
Dave
|