tags:

views:

85

answers:

1

I am trying to write a socket server in .Net. I just read about twisted and found very interesting.

Is there any equivalent library available for .Net ?

A: 

According to this page it looks as though the Socket object now has some basic support for async communication. I don't know of anything equivalent to Twisted in terms of its polished abstractions though.

This page has some examples of using the new async APIs (in c#).

Kevin Horn