Compiler Error C2802
Visual Studio 2005
Error Message
static member 'operator operator' has no formal parametersAn operator declared by a static member function must have at least one parameter.
The following sample generates C2802:
// C2802.cpp
// compile with: /clr /c
ref class A {
static operator+ (); // C2802
static operator+ (A^, A^); // OK
};