NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

7.5.2 Class base specification

A class declaration may include a class base specification that defines the direct base class of the class. If a class declaration has no explicit class base, the direct base class is implicitly Object.

Every class has exactly one direct base class, and no circularity in derivation is permitted. It is not possible to derive from a final class, and the accessibility domain of the base class must be the same as or a superset of the accessibility domain of the class itself.

ClassBase ::= Inherits ClassTypeName LineTerminator