C# Keywords

C# language contains some reserved words which are pre-defined and have a special meaning for the compiler. These are called the C# keywords.

C# Keywords cannot use as an identifier of a variable, interface, class, namespace, etc.

There are several categories where keywords will distribute. Some of them are the Data type related keywords like int, byte, char, string, etc.

Modifier keywords like abstract, const, extern, override, partial, Readonly, etc.

Access modifier keywords like private, public, protected, internal, etc.

…..

so on and so forth

We will be using these keywords in C# while moving forward…

Categories C#