.NET Console Application Tab Completion - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T11:37:21Zhttp://stackoverflow.com/feeds/question/46346http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/46346/net-console-application-tab-completion3.NET Console Application Tab CompletionAdam Haile2008-09-05T17:22:53Z2008-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#463523Answer by Andrew Burns for .NET Console Application Tab CompletionAndrew Burns2008-09-05T17:25:43Z2008-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#463964Answer by Kenny for .NET Console Application Tab CompletionKenny2008-09-05T17:49:20Z2008-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#475870Answer by Andrew Burns for .NET Console Application Tab CompletionAndrew Burns2008-09-06T15:50:58Z2008-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#475941Answer by Lars Mæhlum for .NET Console Application Tab CompletionLars Mæhlum2008-09-06T15:56:53Z2008-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>