編譯器警告 (層級 1) C4397
已忽略 DefaultCharSetAttribute
DefaultCharSetAttribute Microsoft C++ 編譯程式會忽略 。 若要指定 DLL 的字元集,請使用 DllImport 的 CharSet 選項。 如需詳細資訊,請參閱 使用 C++ Interop (隱含 PInvoke) 。
範例
下列範例會產生 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{};