Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Want to script a C# application

I need to run some validation tests on our c# client-server configuration. Is there a dynamic script language that my client application could run, that would have full access to all of its C# classes and asssemblies?

Something like beanshell for java: http://www.beanshell.org/intro.html

Thanks!

like image 238
Jacko Avatar asked Jul 10 '10 17:07

Jacko


People also ask

How do you Ctrl C in bash?

When you hit Ctrl + c , the line discipline of your terminal sends SIGINT to processes in the foreground process group. Bash, when job control is disabled, runs everything in the same process group as the bash process itself. Job control is disabled by default when Bash interprets a script.


2 Answers

I think your best option would be Windows Powershell.

like image 111
captaintom Avatar answered Oct 15 '22 09:10

captaintom


How about IronPython?

like image 31
tzaman Avatar answered Oct 15 '22 11:10

tzaman