gpt4 book ai didi

c# - 作为程序的一部分在运行时编译代码

转载 作者:太空宇宙 更新时间:2023-11-03 17:03:23 25 4
gpt4 key购买 nike

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

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

有一个form.A Textbox in form。我想在运行时使用字符串代码作为我的程序的一部分。

最佳答案

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

关于c# - 作为程序的一部分在运行时编译代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15470102/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com