1

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.

oivoodoo
  • 774
  • 7
  • 23

1 Answers1

2

Here you go, GNU Readline support for Mono, Mono-Readline. See also, Is there a .Net library similar to GNU readline?

Community
  • 1
  • 1
Hasturkun
  • 35,395
  • 6
  • 71
  • 104
  • 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 Aug 19 '10 at 12:05
  • 1
    ok, I used readline.cs from Mono(LineEditor class). Example of application you can see at http://github.com/oivoodoo/mono-clish/ – oivoodoo Aug 24 '10 at 12:52