Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
'function' : a member-function of a managed or WinRTtype cannot be declared with '...'
Remarks
Managed and WinRT class member functions cannot declare variable-length parameter lists.
Example
The following example generates C3269 and shows how to fix it:
// C3269_2.cpp
// compile with: /clr
ref struct A
{
void func(int i, ...) // C3269
// try the following line instead
// void func(int i )
{
}
};
int main()
{
}