Sergey Malyan
Sergey Malyan

Reputation: 1201

Developing "Command Line" in .NET?

Imagine a "search box" on the right top side of the UI Windows Application. When user types a desired action, a matching functionality is executed. Screen gets opened, or action gets performed.

For example: user types "create" and intellisence offered next word options "client"/"product", user picks "client", and "Create New Client" screen opens up.

So what I am looking for if there is a framework support for this. I assume that framework shall bind together text commands names, commands and show in intellisense. Same framework possibly could have been used in alternative "Command Line interface".

I recall Microsoft had some recent framework that helps to setup "command Line Interface" environmental. It is hard to search on web for this keywords, so relying on intelligent help from you guys. Thanks in advance.

Upvotes: 2

Views: 145

Answers (3)

Alexander Bird
Alexander Bird

Reputation: 40599

It sounds to me more like you're looking for a development environment for the programmer more than a specific underneath framework.

So with that said, Boo (http://boo.codehaus.org/) is great for developing .NET programs, but I'm not sure if it's what you want.

Upvotes: 0

marc_s
marc_s

Reputation: 754240

You could look into hosting the PowerShell runtime inside your app and spare yourself a lot of work reinventing the wheel....

Upvotes: 3

toxaq
toxaq

Reputation: 6838

Have you considered a Domain Specific Language? This Code Project article is a good start.

I'm not sure about the intellisense portion of your question, gut feeling is that it could be quite involved.

Upvotes: 0

Related Questions