Reputation: 33
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
Is this possible to achieve in C#? if it is possible sample code will be very helpful.
Upvotes: 3
Views: 1408
Reputation: 812
You can achieve an ncurses-like interface in C# by using MonoCurses.
Upvotes: 1