|
What are the Keywords in C#?
|
|
Keywords are special words built into the C# language and are reserved for specific use. This means you cannot use them for naming your classes, methods and variables. For instance, if you attempt to use a C# keyword (if) as your class name, the C# compiler will emit runtime error.
|
|
|
|
|
|
|
|