|
|
|
|
|
- Reason
- Correction
- Example
- Declaring a class without the END keyword
Error 40: The END statement marking the end of the class declaration is missing
You are declaring a class in the declaration code of your class. The class declaration does not end with the END keyword. Used the END keyword to end the declaration of your class. Declaring a class without the END keyword Code triggering the error // -- Declaration of "File" class File is Class Name is string Extension is string Directory is string
Possible correction Use the END keyword. // -- Declaration of "File" class File is Class Name is string Extension is string Directory is string END
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|