vote up 3 vote down star
1

Any ideas on how to implement tab completion for a .NET (C#) Console Application? And I mean within an application that is run and then loops for user input (like if you run ftp.exe without any arguments), like this:

        string line = string.Empty;
        while (line != "exit")
        {
            //do something here
            Console.ReadLine();
        }

I know I probably couldn't actually use readline, but I would like to be able to do tab completion at that same point where you retrieve input from the user.

flag

4 Answers

vote up 4 vote down check

Take a look at this code from the Mono project http://tirania.org/blog/archive/2008/Aug-26.html I played with it some the other day. It does a lot of command line editingy, but I don't think it does line completion.

link|flag
vote up 3 vote down

Console.ReadKey

link|flag
vote up 1 vote down

Do a Console.ReadKey().

If you get a Tab, look at what you have in the command buffer, and loop through your available commands. If someCommand.Name.BeginsWith(currentinput), you have a winner, and you can write to screen a list of possible commands.

If there is only one(TM) you can substitute it with what the user had typed :)

link|flag
vote up 0 vote down

@Kenny Line 17 of that file says completion support is not complete. However I still upped your answer as that is VERY handy and MIT licensed.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.