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.
'member' : imported member function can't be defined
Remarks
A member was defined in code that is also defined in a referenced assembly.
Example
The following example generates C3414:
// C3414a2.cpp
// compile with: /clr /LD
public ref class MyClass {
public:
void Test(){}
};
and then:
// C3414b2.cpp
// compile with: /clr
#using <C3414a2.dll>
void MyClass::Test() { // C3414
}
System::Object::Object() { // C3414
}