lxzliuxinzhu / syntaxhighlighter

Automatically exported from code.google.com/p/syntaxhighlighter
GNU General Public License v3.0
0 stars 0 forks source link

Linq keywords in C# 3.0 #165

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I suggest to highlight linq keywords in C# 3.0 code, for example in
following block keywords "from", "in", "where" and "select" should be
highlighted as keywords.

var messages =
  from message in Query<Message>.All
  where message.Text.StartsWith("Hello")
  select message;

Original issue reported on code.google.com by al.kof...@gmail.com on 14 Sep 2009 at 1:41