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 C3625

'declaration': 'abstract' keyword can only be used on classes and structs

The __abstract keyword can only be applied to a class or a struct.

The following sample generates C3625:

// to resolve this C3625, remove __abstract from the int declaration 
// and declare the struct as follows
// __abstract struct A {
struct A {
   __abstract int j;   // C3625
};

void main() {
}