[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct WLAN_PROFILE_INFO
{
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
public string strProfileName;
public uint dwFlags;
}
<StructLayout(LayoutKind.Sequential, CharSet := CharSet.Unicode)> _
Public Structure WLAN_PROFILE_INFO
<MarshalAs(UnmanagedType.ByValTStr, SizeConst := 256)> _
Public strProfileName As String
Public dwFlags As UInteger
End Structure
None.
None.