Hi
I'm using Visual Studio C# Express 2010 to make a console application. I've implemented the 'commands' as if sections in the Prompt method calling a command method, eg
if (line == "help")
{
Help();
}
That gives you a help page on my program. If it needs cleaning up that's fine.
What I'm trying to figure out is how I can, say, have the user type in a command followed by ? and get command-specific help, rather than just a blanket help page. I don't have any code attempts because I deleted them earlier, but I'll keep coding.
Cheers for your help.