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!

Fatal Error C1190

NGWS runtime targeted code requires '#using <mscorlib.dll>' and /com+

You are using Managed Extensions for C++ constructs and the /com+ compiler option, but you did not explicitly include Mscorlib.dll.

The following sample generates C1190:

// uncomment the following line to resolve error 
// #using <mscorlib.dll>   
__gc class A {
};

void main() {
}