Хабр Курсы для всех
РЕКЛАМА
Большая витрина: от крупнейших школ до частных авторов. Сравнивайте по цене, длительности, формату и выбирайте самый подходящий курс!
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#