Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
static member 'operator operator' has no formal parameters
An 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
};