socketpair in .NET

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mario Garcia

    socketpair in .NET

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

    Thanks.


  • Juan Gabriel Del Cid

    #2
    Re: socketpair in .NET

    > 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


    Comment

    Working...