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 C3382

'type' : assembly access specifier has changed: was 'specifier' is now 'specifier'

You cannot change a type's assembly-level access.

The following sample generates C3382:

#using <mscorlib.dll>

private __gc class X;

public __gc class X {   // C3382
};


void main() {
}