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 Classes

Classes are reference types. There is one special class that is referenced by a keyword, String. String is an alias for System.String, which represents a sequence of Unicode characters.

ClassTypeName ::= QualifiedIdentifier | String
ClassDeclaration ::=
 [ ClassModifier+ ] Class [ Attributes ] Identifier LineTerminator
 [ ClassBase ]
 [ TypeImplementsClause+ ]
 [ ClassMemberDeclaration+ ]
 End Class LineTerminator