basarat
basarat

Reputation: 275839

on contextual keyword not mentioned in the c# keywords

on is a contextual keyword right? Sample : http://msdn.microsoft.com/en-us/library/bb311040.aspx
It is not mentioned here: http://msdn.microsoft.com/en-us/library/x53a06bb(v=VS.100).aspx
Or am I misinterpreting?

Upvotes: 1

Views: 417

Answers (2)

Saurabh Gokhale
Saurabh Gokhale

Reputation: 46395

A Contextual keyword is used to provide a specific meaning in the code, but it is not a reserved word in C#.

Its there on Contextual Keywords (C# Reference)

The on contextual keyword is used in the join clause of a query expression to specify the join condition.

Upvotes: 1

Ken Pespisa
Ken Pespisa

Reputation: 22266

It is mentioned here: http://msdn.microsoft.com/en-us/library/bb310804.aspx

Upvotes: 1

Related Questions