static void Main(string[] args) { //new connection var con = new TelnetClient(FromConfig.Server, 23, 30); try { if (!con.Login(FromConfig.Username, FromConfig.Password)) { throw new Exception("Failed to connect."); } Console.WriteLine("In"); con.SendAndWait("cd /", "$"); con.SendAndWait("ls -ltr", "$"); Console.WriteLine(con.SessionLog); con.Disconnect(); Console.ReadLine(); } catch (Exception ex) { Console.WriteLine(con.SessionLog); Console.WriteLine(ex.Message); } }