我希望将我目前拥有的脚本解决方案转移到 C#,因为我相信这将解决我目前在不同平台上运行时面临的一些问题。我可以调用脚本中的函数并访问它们的变量,但是,我想做的一件事是从脚本所在的类中调用一个函数。有谁知道我能怎么做这?
这是我目前用于调用和访问脚本中的对象的代码,但我希望能够从脚本中调用“调用”方法,但不能:
using System;
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.Reflection;
using Microsoft.CSharp;
namespace scriptingTest
{
class MainClass
{
public static void Main (string[] args)
{
var csc = new CSharpCodeProvider ();
var res = csc.CompileAssemblyFromSource (
new CompilerParameters ()
{
GenerateInMemory = true
},
@"using System;
public class TestClass
{
public int testvar = 5;
public string Execute()
{
return ""Executed."";
}
}"
);
if (res.Errors.Count == 0) {
var type = res.CompiledAssembly.GetType ("TestClass");
var obj = Activator.CreateInstance (type);
var output = type.GetMethod ("Execute").Invoke (obj, new object[] { });
Console.WriteLine (output.ToString ());
FieldInfo test = type.GetField ("testvar");
Console.WriteLine (type.GetField ("testvar").GetValue (obj));
} else {
foreach (var error in res.Errors)
Console.WriteLine(error.ToString());
}
Console.ReadLine ();
}
static void Called() // This is what I would like to be able to call
{
Console.WriteLine("Called from script.");
}
}
}
我正在尝试在 Mono 中执行此操作,但是,我认为这不会影响解决方法。