Tagged Questions

3
votes
2answers
732 views

Mono and C# IOCP: Is it a good idea?

I'm porting a c++ app to c# that uses IOCP on it's server. Can mono handle IOCP as well as windows? will i get comparable performance to c++ or i should try something else? thanks
1
vote
1answer
329 views

Test for I/O Completion Port Support

I found the following code in the code of an SMTP mail server (LumiSoft Mail Server). According to the method's name, it test whether the platform supports I/O Completion Ports. /// <summary> ...