Esempio n. 1
0
        public void InteractiveSession()
        {
            int  i;
            char ch;

            try
            {
                t.Receive();

                while (!done)
                {
                    t.Send(Console.ReadLine() + t.CRLF);
                }
            }
            catch
            {
                t.Disconnect();
                throw;
            }
        }