TELNET IN C#

#7 TELNET IN C#

Telnet example…

Writing a small app to communicate over telnet has never been easier. Of course you could just download Putty or use Telnet in Windows CMD but wheres the fun in that?

Writing your own app has tons of perks, automation is what comes to mind… It’s common for programmers to have small helper scripts (for instance running batch scripts in windows to automate installations etc.) but windows .bat and PowerShell scripts can be limiting at times. Especially when you want the user to be amazed by your custom GUI.

The libraries used are ConsoleControl and TentacleSoftware.Telnet.

ConsoleControl allows us to embed a CMD terminal into our Windows Forms or WPF application. In this case we are using Windows Forms.
TentacleSoftware.Telnet is a Telnet library making connecting to the device much easier since we don’t have to write our own sockets protocol etc.

Leave a Reply

Your email address will not be published. Required fields are marked *