Hi,
Is there a managed equivelent of IO Completion ports in C# (I see an unmanaged). Basically, I'm curious about how to approach writing a high volume socket server in C#.
Or should I stick to C++?
Printable View
Hi,
Is there a managed equivelent of IO Completion ports in C# (I see an unmanaged). Basically, I'm curious about how to approach writing a high volume socket server in C#.
Or should I stick to C++?
Async Method Invokation.....Look at BeginInvoke....
That is one alternative.