socketpair in .NET

  • Thread starter Thread starter Mario Garcia
  • Start date Start date
M

Mario Garcia

Does anyone know how to implement the socketpair() function in .NET?

Thanks.
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top