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 C3409

empty attribute block is not allowed

The square brackets were interpreted by the compiler as an attribute block, but no attributes were found.

The following sample generates C3409:

[] // C3409, specify the coclass attribute?
class a {
   };

void main(){
}