how can make "builder" application. let me explain in example:
application.exe
system.console; private class program { public static void main() { writeline(message); } }
now want have c# program able compile program change string message user desires.
i hope can understand mean bad english , bad explanation skills.
class program { static void main(string[] args) { if (args.length >0) { console.writeline(args[0].tostring()); console.readkey(); } } }
complile program , execute using cmd prompt string want parameter.
Comments
Post a Comment