NET 

Simplified Class Layout

In .Net programs, it is no longer necessary to embed methods and data within the STATIC/END STATIC and OBJECT/END OBJECT markers.

Instead, data and method can be placed directly underneath the CLASS-ID header. In this case, both method and data are instance by default. They can be made static by use of the STATIC keyword. For example:

Class-id a.
01 str string.
01 static-str string static.
Method-id m1.
End method.
Method-id m2 static.
End method.
End class.