Compiler Warning (level 1) C4397
DefaultCharSetAttribute diabaikan
DefaultCharSetAttribute diabaikan oleh pengkompilasi Microsoft C++. Untuk menentukan set karakter untuk DLL, gunakan opsi CharSet dllImport. Untuk informasi selengkapnya, lihat Menggunakan Interop C++ (PInvoke Implisit).
Contoh
Sampel berikut menghasilkan C4397.
// C4397.cpp
// compile with: /W1 /c /clr
using namespace System;
using namespace System::Runtime::InteropServices;
[module:DefaultCharSetAttribute(CharSet::Unicode)]; // C4397
[DllImport("kernel32", EntryPoint="CloseHandle", CharSet=CharSet::Unicode)] // OK
extern "C" bool ImportDefault(IntPtr hObject);
public ref class MySettingVC {
public:
void method() {
ImportDefault(IntPtr::Zero);
}
};
[StructLayout(LayoutKind::Explicit)]
public ref struct StructDefault1{};
public ref class ClassDefault1{};