.Net library for console menu application

I was wondering if anyone knew of a library for .net console applications that handled all the menu functionality. I know that this is not so difficult, and I can just use Console.WriteLine("..."); to write text, and then do Console.ReadLine(); but I'm just wondering if anyone knows something existing that will handle the menu. I will probably need submenus that will make the code complicated.

(Do not ask why I should do this ...)

+4
source share
2 answers

There is a C # binding to nCurses found. This is an API that helps with writing text interfaces.

If you are just looking for parsing command line options - commandline is a good library for this.

+4
source

I recommend checking out EasyConsole .

It has a Nuget package and supports a sophisticated submenu.

0
source

All Articles