Does anyone know how to implement the socketpair() function in .NET?
Are you sure you need interprocess communication? I don't think there is a
way to fork() in any managed environment. Besides, threads are a much better
solution.
To answer your question, no, there is no way to do socketpair() in .Net.
Maybe you should try redesigning your project. What exactly are you trying
to do?
-JG