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 C3735

'attribute': NGWS runtime only attribute

The attribute is a NGWS attribute.

The following sample generates C3735:

// compile without /com+ to reproduce C3735
// #using <mscorlib.dll>   // uncomment this line and compile with /com+ to resolve

[attribute(All)]
struct A {         // C3735
};

void main() {
}