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 C2462

'identifier' : cannot define a type in a 'new-expression'

You cannot define a type in the operand field of the new operator. Put the type definition in a separate statement.

Example

void main()
{
    new struct S { int i; };     // error
}