dimisam
dimisam

Reputation: 33

Console Application With Multiple Panels

I'm writing a C# TCP Server as a console application, my requirement is to display few information in separate panels in same console, like this image bellow

screenshot downloaded from internet

Is this possible to achieve in C#? if it is possible sample code will be very helpful.

Upvotes: 3

Views: 1408

Answers (1)

emmekappa
emmekappa

Reputation: 812

You can achieve an ncurses-like interface in C# by using MonoCurses.

Upvotes: 1

Related Questions