代码编译运行时作为程序的一部分

时间:2013-03-18 05:06:57

标签: c#

编写此代码片段是为了在运行时编译代码。 编译后的代码与任何其他程序一样。 可以访问反射。 我想做一些不同的事情。

using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.CSharp;
using System.CodeDom.Compiler;

class Program
{
    static void Main(string[] args)
    {
        var csc = new CSharpCodeProvider(new Dictionary<string, string>() { { "CompilerVersion", "v3.5" } });
        var parameters = new CompilerParameters(new[] { "mscorlib.dll", "System.Core.dll" }, "foo.exe", true);
        parameters.GenerateExecutable = true;
        CompilerResults results = csc.CompileAssemblyFromSource(parameters,
        @"using System.Linq;
            class Program {
              public static void Main(string[] args) {
                var q = from i in Enumerable.Range(1,100)
                          where i % 2 == 0
                          select i;
              }
            }");
        results.Errors.Cast<CompilerError>().ToList().ForEach(error => Console.WriteLine(error.ErrorText));
    }
}

例如:

我的代码是Textbox1.Text =“123”;它位于文件或数据库中。

表格中有一个表格。 我想在运行时使用字符串代码作为我的程序的一部分。

1 个答案:

答案 0 :(得分:-1)

为此,您可以将函数名称更改为string_Function而不是Main。将上面的代码段保存为.cs文件。说Code_Snippet.cs。现在将此文件添加到MainProject。无论您想在何处使用此代码段,都必须编写代码行,例如: Code_Snippet.String_Function(TextBox.Text);