Possible Duplicate:
Implementing a scripting language in C#
I have a C# app, now I want to allow users invoking some methods from my app, for example:
:step2
$test2=Click("post")
Wait()
IF($test2==1){
runjs("mceRemoveControl")
Form("post")
$test3=Input("post_title","$TITLE")
IF($test3==0){
GOTO(step2)
}
}
This is custom language which I want to parse in my app. Methods Click,runjjs,Input are methods from my C# program. Where I should looking for solution for such task?