Originally posted by Source
This is more of a request i guess, but i was wanting to create an apllication in c#. It deals with memory editing, kind of like a debugger but with premade functions. Now the problem is that i want to implement javascript into the program, so that the user can write there own scripts built around the predefined functions within the program witout having to de/recompile evertime a change is needed. any suggestions? Thanks in advance
If you are talking about live editing, that is not a good thing. Especially with scripts, if you are typing and the program is trying to interpret the script you are writing, you will end up with errors.
You will need to add a button to interpret each and every time as well as ending the function.
What kind of memory editing are you talking about? Are you talking about reading a program while it is actively functioning and editing and compiling it? A lot of issues will be ran into with something like that when dealing with IO streams. It would involve closing the program and rebuilding it, more of a restart.
You would need to be more specific with what you want and everything you would like. A short description could mean many things for a programmer. If you told me you wanted a random dice generator, I'd assume you might want 1-6 while in truth you wanted it for Dungeons and Dragons and wanted 1-20. Kinda get what I mean?