Expand Minimize
0 out of 1 rated this helpful - Rate this topic

Compiler Error C2802

Error Message

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
};
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.