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 Warning (level 4) C4515

'namespace' : namespace uses itself

A namespace is used recursively.

Example

namespace A {
   using namespace A; // warning C4515
}