spaceconquest.HostScreen.MessageThread.SendRecieve C# (CSharp) Method

SendRecieve() public method

public SendRecieve ( ) : void
return void
            public void SendRecieve()
            {
                socket.Connect(end);
                stream = new NetworkStream(socket);
                Console.WriteLine("Connected to host");

                formatter.Serialize(stream, message);
            }
HostScreen.MessageThread