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!

Compiler Error C3609

'element': 'sealed' keyword can only be used on classes, structs and member functions

The sealed keyword is invalid unless used on a class, struct, or member function.

The following sample generates C3609:

void main() {
   __sealed int i;   // __sealed not allowed on a variable
}