gpt4 book ai didi

c# - 如何获取动态编译的C#代码变量的值

转载 作者:太空宇宙 更新时间:2023-11-03 10:38:17 24 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" }, "Example.exe", true);
parameters.GenerateExecutable = true;
CompilerResults results = csc.CompileAssemblyFromSource(parameters,
@"using System.Linq;
class Program {
public static void Main(string[] args) {
int abc=10;
bool myresult=false;

if(abc==10)
myresult=true;
else
myresult=false;
}
}");
results.Errors.Cast<CompilerError>().ToList().ForEach(error => Console.WriteLine(error.ErrorText));
}
}

我希望运行时代码在我的主程序中返回 myresult 变量的值,以及如何获取它。

最佳答案

(1) 您可以将编译后的程序集加载为一段代码,并使用任何参数传递契约直接调用任何方法。以下修改示例打印 enter image description here

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

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" }, "Example.exe", true);
parameters.GenerateExecutable = true;
CompilerResults results = csc.CompileAssemblyFromSource(parameters,
@"using System.Linq;
class Program {
public static void Main(string[] args) {}

public static string Main1(int abc) {
bool myresult=false;

if(abc==10)
myresult=true;
else
myresult=false;

return abc.ToString() + "": "" + (myresult ? ""myresult is true"" : ""myresult is false"");
}
}");
results.Errors.Cast<CompilerError>().ToList().ForEach(error => Console.WriteLine(error.ErrorText));

var scriptClass = results.CompiledAssembly.GetType("Program");
var scriptMethod1 = scriptClass.GetMethod("Main1", BindingFlags.Static | BindingFlags.Public);

Console.WriteLine(scriptMethod1.Invoke(null, new object[] { 10 }).ToString());
Console.WriteLine(scriptMethod1.Invoke(null, new object[] { 20 }).ToString());
}
}

(2) 或者您可以使用您想要的任何命令行参数运行已编译的 Example.exe,解析它们并以您想要的任何方式返回结果。控制台应用程序通常通过文件传达复杂的输入或输出结果,并且总体成功/失败通过 Process.ExitCode 指示.有很多可用选项,Stack Overflow 问题 Returning a string from a console application 中概述了其中一些选项。

关于c# - 如何获取动态编译的C#代码变量的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26581678/

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