c#动态编译并执行字符串


比较简单,步骤是这样的

string -> compiler -> assembly -> reflection -> execution

直接上代码:

using System;
using Microsoft.CSharp;
using System.CodeDom.Compiler;
 
class Program
{
    public static void Main()
    {
        // The C# code to execute
        string code = "using System; " +
                      "using System.IO; " +
                      "public class MyClass{ " +
                      "   public static void PrintConsole(string message){ " +
                      "       Console.WriteLine(message); " +
                      "   } " +
                      "} ";
 
        // Compiler and CompilerParameters
        CSharpCodeProvider codeProvider = new CSharpCodeProvider();
        CompilerParameters compParameters = new CompilerParameters();
 
        // Compile the code
        CompilerResults res = codeProvider.CompileAssemblyFromSource(compParameters, code);
 
        // Create a new instance of the class 'MyClass'

    // 有命名空间的,需要命名空间.类名 object myClass = res.CompiledAssembly.CreateInstance("MyClass"); // Call the method 'PrintConsole' with the parameter 'Hello World' // "Hello World" will be written in console myClass.GetType().GetMethod("PrintConsole").Invoke(myClass, new object[] {"Hello World" }); Console.Read(); } }

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM