vote up 4 vote down star
1

I'm adding more keywords to notepad++'s C# Syntax highlighting and it would really help if i had a complete list of LINQ keywords for c#.

flag

2  
Check out the C# 3.0 Language Specification Section 7.15: Query Expressions. – Mehrdad Sep 12 at 8:29
More useful informatioin for you: blogs.msdn.com/ericlippert/archive/… – Eric Lippert Sep 12 at 14:29
Thanks! – RCIX Sep 12 at 16:17

3 Answers

vote up 8 vote down check

From memory:

from select where join on equals group by orderby ascending descending into let

EDIT: As Eric says, you may want to include var as well (you certainly should if you want to highlight all C# 3 contextual keywords).

If you're doing symbols too, you may want to include a pattern for =>

link|flag
Thanks Mehrdad: there was bound to be one I'd forgotten :) – Jon Skeet Sep 12 at 8:31
Accepting this one cause i can copy-paste right into the xml file :) – RCIX Sep 12 at 8:34
Nice Jon. Of course, "where" was not added originally as a LINQ contextual keyword, it was added as a contextual keyword for generic constraints, so now it is a contextual keyword twice over! It is debatable whether "var", which you omit, should be counted as a "LINQ keyword". It was added for LINQ scenarios but is not part of the query comprehension syntax. – Eric Lippert Sep 12 at 14:33
Yes, my natural translation of the question was "what are the keywords for query expressions" - I hadn't even considered var... – Jon Skeet Sep 12 at 14:52
vote up 6 vote down

You can get started here.

link|flag
vote up 0 vote down

You can find the Linq Query keywords here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.