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 C3365

'property name' : a property of this name and type has already been declared

You tried to define a property twice in the same class or interface. For example:

class A {
property int i;
property int i;   // C3365
};