select (ws2_32)
Last changed: anonymous

.
Summary
TODO - a short description

C# Signature:

    [DllImport("Ws2_32.dll")]
    public static extern int select(
        int nfds,
        /* An optional pointer to a set of sockets to be checked for readability. */
        ref fd_set readfds,
        /* An optional pointer to a set of sockets to be checked for writability. */
        ref fd_set writefds,
        /* An optional pointer to a set of sockets to be checked for errors. */
        ref fd_set exceptfds,
        ref timeval timeout);

VB Signature:

Declare Function select Lib "ws2_32.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation
select on MSDN