I was wondering if anyone knew of a library for .net console apps that handled all the menuing functionality. I know its not that complex and I can just use Console.WriteLine("...");
to write text then do Console.ReadLine();
, but am just curious if anyone knows of something existing that would handle the menuing. I'm likely to need submenus which would make the code complex.
(Don't ask why I have to do this...)