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 C2880

'symbol' : a symbol of this name already exists in the current scope

You tried to create a namespace alias, but the name you chose already exists.

Example

namespace A {
   int k;
}

int i;

namespace i = A; // error C2880, i already exists