i was wondering how exactly I can create a small app that will accept my input and run it as code. same light as building an IDE, but I dont want to go that far, but I do want it to use the FCL. So like if I had a text box and i punched in:
string x = "hello";
int myLength;
myLength = x.length;
Then hit a submit button, it would compile this and run it into an output window. Is there a pretty simple way to do this? Or am i going to have to right a pretty involved method that breaks this all up? Sorry if i'm not being totally clear, I wasn't exactly positive on how to ask this question lol. Really what I'm getting at, is I want to create sort of a code "calculator" tool where I can punch in some simple snippets and test what it is returning without having to build a full class and compiling just to test something simple. can anyone point me in the right direction?