Тема: Пуста відповідь від сервера
class Program
    {
       static StreamReader sr;
       static NetworkStream ns;
        static void Main(string[] args)
        {
     
            TcpClient tcp = new TcpClient();
            tcp.Connect("pop.gmail.com",995);
            ns = tcp.GetStream();
            sr = new StreamReader(tcp.GetStream());
            string retVal = sr.ReadLine();
            Console.WriteLine("retVal:"+retVal);
            Console.WriteLine("////----////");
            Console.ReadLine();
        }
  

