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 C2463

cannot define an anonymous type in a 'new-expression'

You cannot define an anonymous type in the operand field of the new operator. Create a named type definition in a separate statement, then use the new operator.

Example

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