views:

48

answers:

1

Hi, everyone.

Have you seen library for flexible working with terminal(Unix like)? I want to implement autocompletion, history, help params in my console application same operations you can see in the Unix terminals.

C#, Mono library.

Thanks.

+2  A: 

Here you go, GNU Readline support for Mono, Mono-Readline. See also, http://stackoverflow.com/questions/2024170/is-there-a-net-library-similar-to-gnu-readline

Hasturkun
Thanks for you response!
oivoodoo
Mono-Readline have poor API. I found another one way Mono.Terminal.Editor. I will take a look in this reference and wrote about this one.
oivoodoo
ok, I used readline.cs from Mono(LineEditor class). Example of application you can see at http://github.com/oivoodoo/mono-clish/
oivoodoo