Хабр Курсы для всех
РЕКЛАМА
Практикум, Хекслет, SkyPro, авторские курсы — собрали всех и попросили скидки. Осталось выбрать!
CompilerResultsresults = provider.CompileAssemblyFromSource(compilerParams, source);Может всетаки stringsource?
DynamicMethod meth = new DynamicMethod("", null, null); ILGenerator il = meth.GetILGenerator(); il.EmitWriteLine("Hello, World!"); il.Emit(OpCodes.Ret); Action hello = (Action) meth.CreateDelegate(typeof(Action)); hello();
Динамическая компиляция кода в C#