@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: This structure stores an IP address in dotted decimal format. !!!!C# Definition: [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Ansi)] public struct IP_ADDRESS_STRING { [MarshalAs(UnmanagedType.ByValTStr, SizeConst=16)] public string Address; } !!!!VB Definition: <StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Ansi)> _ Private Structure IP_ADDRESS_STRING <MarshalAs(UnmanagedType.ByValTStr, SizeConst:=(4 * 4))> _ Dim value As String End Structure !!!!User-Defined Field Types: None. !!!!Notes: None. Documentation: IP_ADDRESS_STRING@msdn on MSDN
Edit Structures.IP_ADD...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.