'function' : マネージド型または WinRT 型のメンバー関数は '...' と共に宣言することはできません
注釈
マネージド クラスと WinRT クラスのメンバー関数では可変長のパラメーター リストを宣言できません。
Example
次の例では C3269 が生成され、修正方法が示されています。
// 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()
{
}