Possible Duplicate:
using eval in Java
In javascript i can call a function using eval like :
eval('my_javascript_code;')
Is there anything like that in C# or JAVA which lets me run C# or JAVA code?
String time = Eval("My csharp code");
Or Am I completely off the track?