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 C3269

'function' : a member-function of a managed class cannot be declared with '...'

Managed-class member functions cannot declare variable-length parameter lists.

The following sample generates C3269:

#using <mscorlib.dll>

__gc struct A {
   void func(int i, ...) {   // C3269, remove ', ...' to resolve
   }
};

void main() {
}