C# Keywords (C#)

Switch View :
ScriptFree
C# Language Reference
C# Keywords

Keywords are predefined reserved identifiers that have special meanings to the compiler. They cannot be used as identifiers in your program unless they include @ as a prefix. For example, @if is a legal identifier but if is not because it is a keyword.

Contextual Keywords

See Also

Concepts

C# Programming Guide

Other Resources

C# Reference

Community Content

serkan sendur
There are also "add" and "remove" keywords
I don't understand why they are not listed in the keywords section but there are also "add" and "remove" keywords which overload += and -= operators that register and deregister event handlers to events respectively.