StructLayoutAttribute.CharSet Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether string data fields within the class should be marshaled as LPWSTR
or LPSTR
by default.
public: System::Runtime::InteropServices::CharSet CharSet;
public System.Runtime.InteropServices.CharSet CharSet;
val mutable CharSet : System.Runtime.InteropServices.CharSet
Public CharSet As CharSet
Field Value
Remarks
If the CharSet
field is set to CharSet.Unicode or CharSet.Auto, all string arguments are converted to Unicode characters (LPWSTR
) before they're passed to the unmanaged implementation. If the field is set to CharSet.Ansi, the strings are converted to ANSI strings (LPSTR
).