while (true)
            {
                TcpClient tc = listener.AcceptTcpClient();
                NetworkStream ns = tc.GetStream();
                byte[] buffer = new byte[1024];
                int postion = 1;
                string data = string.Empty;            
                while (postion > 0)
                {
                    postion = ns.Read(buffer, 0, buffer.Length);
                    data = System.Text.Encoding.UTF8.GetString(buffer, 0, buffer.Length);
                    //System.Threading.Thread.Sleep(50);
                    Console.WriteLine(data);
                }
                
                tc.Close();            }