c# - Use an Enum for a Console Command Library (With Implementations) -
i have researched on youtube nothing has come up, on google. please show how use enum console command library, or better way process commands. appreciated.
parsing console commands difficult well, , common problem has been solved many times. library you, or @ least provide examples.
if want parse commands being entered program (ie if writing shell of kind) gnu readline option available source code (though in c). information here: http://web.mit.edu/gnu/doc/html/rlman_1.html
see post c# alternatives readline: is there .net library similar gnu readline?
if parsing stuff passed program command line options, 1 option getopt: http://www.gnu.org/software/libc/manual/html_node/getopt.html
this post talks c# alternatives getopt: getopt library c#
Comments
Post a Comment