Errore del compilatore C3618
'function': non è possibile definire un metodo contrassegnato come DllImport
Un metodo contrassegnato con DllImportAttribute è definito nella specified.DLL.
Esempio
L'esempio seguente genera l'errore C3618.
// C3618.cpp
// compile with: /clr /c
using namespace System;
using namespace System::Runtime::InteropServices;
[ DllImport("user32.dll", EntryPoint="MessageBox", CharSet=CharSet::Ansi) ] // CHANGED
void Func();
void Func() {} // C3618, remove this function definition to resolve