Kompilatorfel C3264

klass: en klasskonstruktor kan inte ha en returtyp

Anmärkningar

Klasskonstruktorer kan inte ha returtyper.

Example

I följande exempel genereras C3264:

// C3264_2.cpp
// compile with: /clr

ref class X {
   public:
      static int X()   { // C3264
      }

      /* use the code below to resolve the error
      static X() {
      }
      */
};
int main() {
}