2

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

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"; 它在文件或数据库中。

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

4

1 回答 1

-1

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

于 2013-03-18T06:18:49.210 回答