[StructLayout(LayoutKind.Sequential)]
public struct ANSI_STRING
{
public short Length;
public short MaximumLength;
public string Buffer;
}
<StructLayout(LayoutKind.Sequential)> _
Public Structure ANSI_STRING
Public Length As Short
Public MaximumLength As Short
Public Buffer As String
End Structure
None.
None.