I can do an eval(\"something()\");
to execute the code dynamically in JavaScript. Is there a way for me to do the same thing in C#?
An example of what I
You also could implement a Webbrowser, then load a html-file wich contains javascript.
Then u go for the document.InvokeScript
Method on this browser. The return Value of the eval function can be catched and converted into everything you need.
I did this in several Projects and it works perfectly.
Hope it helps