Suppose I write a “piece of code” in a text file. Is it possible to read this file at runtime and execute? For example, suppose my software has methods method1 , method2, and method3 . In a text file, I write any simple piece of code, for example:
dim i as integer i = method1() + method2() console.write(i)
How to execute it dynamically at runtime?
source share