- I need to be able to expose "commands" that make calls to the host.
- I need to have simple easy to read syntax.
- It needs to be easy to pick up by non-programmers.
An example would be as follows:
Host Application:
ScriptHost.AddCommandBinding("MyCommand", delegateToMyHandler, parameterDefinitionsStruct);
Script
returnval = MyCommand(param1, param2);
anybody know of anything like this?