StructLayoutAttribute.CharSet Field

Definition

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 are passed to the unmanaged implementation. If the field is set to CharSet.Ansi, the strings are converted to ANSI strings (LPSTR).

Applies to

See also