|
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
as shown in Figure 11.1.
Figure 11.1 {View
enlarged Picture}
In order to resolve the problem, you may have to change
the class name to some other meaningful name. There are around 80
keywords in C#.
|