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 C3179

unnamed managed class/struct is not allowed

All managed classes and structs must have names.

The following sample generates C3179:

#using<mscorlib.dll>
typedef __value struct {
// The following line resolves the error.
// typedef __value struct MyStruct {
   int i;
} V;   // C3179

void main() {
}