@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: TODO - a short description !!!!C# Definition: [StructLayout(LayoutKind.Sequential)] public struct fd_set { public uint fd_count; [MarshalAs(UnmanagedType.ByValArray, SizeConst = Size)] public IntPtr[] fd_array; private const int Size = 1; public static fd_set Null { get { return new fd_set() { fd_array = null, fd_count = 0 }; } } public static fd_set Create(IntPtr socket) { var handle = new fd_set() { fd_count = Size, fd_array = new IntPtr[Size] { socket } }; return handle; } } !!!!VB Definition: Structure fd_set Public TODO End Structure !!!!User-Defined Field Types: None. !!!!Notes: None. Documentation: fd_set@msdn on MSDN
Edit Structures.fd_set
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.