These keywords are used in any part of the C# program and are reserved. Identifiers are special keywords and are treated differently by the compiler.
These are the identifiers that are reserved by C#:
- abstract: This informs you that things that come with the abstract modifier are yet to complete or have a missing definition. We will discuss this in detail on day four.
- as: This can be used in a cast operation. In other words, we can say that this checks the compatibility between two types.
The following is the small code snippet that demonstrates the as identifier: