The firt CSScript - Runtime (V0.0.1 - Prototype) ist just released here:
http://www.codeplex.com/CSScript/Release/ProjectReleases.aspx?ReleaseId=8886
You can run some simple scripts like these:
loadASM "System.Windows.Forms.dll";
string msg = "Hello World";
for(int i=0;i<3;i++) msg+=String.Format("\n{0}...",i);
System.Windows.Forms.MessageBox.Show(msg, "CSSCript - Sample");
1 Comments:
I downloaded it and play with it. Very interesting. Thank you for sharing. I will try to check out the source code.
Post a Comment