'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() { }