.NET Console Application Tab Completion - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:37:21Z http://stackoverflow.com/feeds/question/46346 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/46346/net-console-application-tab-completion 3 .NET Console Application Tab Completion Adam Haile 2008-09-05T17:22:53Z 2008-09-06T15:56:53Z <p>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: </p> <pre><code> string line = string.Empty; while (line != "exit") { //do something here Console.ReadLine(); } </code></pre> <p>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.</p> http://stackoverflow.com/questions/46346/net-console-application-tab-completion/46352#46352 3 Answer by Andrew Burns for .NET Console Application Tab Completion Andrew Burns 2008-09-05T17:25:43Z 2008-09-05T17:25:43Z <p><a href="http://msdn.microsoft.com/en-us/library/system.console.readkey.aspx" rel="nofollow">Console.ReadKey</a></p> http://stackoverflow.com/questions/46346/net-console-application-tab-completion/46396#46396 4 Answer by Kenny for .NET Console Application Tab Completion Kenny 2008-09-05T17:49:20Z 2008-09-05T17:49:20Z <p>Take a look at this code from the Mono project <a href="http://tirania.org/blog/archive/2008/Aug-26.html" rel="nofollow">http://tirania.org/blog/archive/2008/Aug-26.html</a> 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.</p> http://stackoverflow.com/questions/46346/net-console-application-tab-completion/47587#47587 0 Answer by Andrew Burns for .NET Console Application Tab Completion Andrew Burns 2008-09-06T15:50:58Z 2008-09-06T15:50:58Z <p>@<a href="#46396" rel="nofollow">Kenny </a> 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.</p> http://stackoverflow.com/questions/46346/net-console-application-tab-completion/47594#47594 1 Answer by Lars Mæhlum for .NET Console Application Tab Completion Lars Mæhlum 2008-09-06T15:56:53Z 2008-09-06T15:56:53Z <p>Do a Console.ReadKey(). </p> <p>If you get a Tab, look at what you have in the command buffer, and loop through your available commands. If <code>someCommand.Name.BeginsWith(currentinput)</code>, you have a winner, and you can write to screen a list of possible commands. </p> <p>If <em>there is only one(TM)</em> you can substitute it with what the user had typed :)</p>