I have a client-server application that communicates via TCP / IP.
I am using an object of type System.Net.Sockets.Socket for asronic communication over TCP. Basically, I open the data for sending / receiving connections and closed connections. And my implementation is based on objects like Socket.
Now I need to use a third-party dll to do something. This dll expects an object of type System.IO.Stream . So I need to get the Stream object of my Socket .
How can i do this?
Thanks.
c # stream sockets
Fer
source share