编译后访问类和函数(CompiledAssembly)

发布于 2024-08-10 06:41:52 字数 731 浏览 3 评论 0原文

这是一些示例代码。我成功地弄清楚了如何编译它。我抓住了位置并能够使用 Visual Studios 对象浏览器来查看 DLL。我不知道如何获取类实例并调用函数。

    public static void test()
    {
        JScriptCodeProvider js = new JScriptCodeProvider();
        System.CodeDom.Compiler.CompilerParameters param = new System.CodeDom.Compiler.CompilerParameters();
        var cr = js.CompileAssemblyFromSource(param, new string[] { "package pkg { class b { public function increment(x) { return x+1; } } }" });
        foreach (var e in cr.Errors) { 
            var s = e.ToString(); 
        }
        var asm = cr.CompiledAssembly;
        var module = cr.CompiledAssembly.GetModules();
//or var module = cr.CompiledAssembly.GetModule("JScript Module");
        //...
    }

Heres some example code. I successfully figured out how to compile this. I grabbed the location and was able to use visual studios object browser to look through the DLL. I cant figure out how to get a class instance and call a function.

    public static void test()
    {
        JScriptCodeProvider js = new JScriptCodeProvider();
        System.CodeDom.Compiler.CompilerParameters param = new System.CodeDom.Compiler.CompilerParameters();
        var cr = js.CompileAssemblyFromSource(param, new string[] { "package pkg { class b { public function increment(x) { return x+1; } } }" });
        foreach (var e in cr.Errors) { 
            var s = e.ToString(); 
        }
        var asm = cr.CompiledAssembly;
        var module = cr.CompiledAssembly.GetModules();
//or var module = cr.CompiledAssembly.GetModule("JScript Module");
        //...
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月蹉跎了容颜 2024-08-17 06:41:52

嗯,答案确实很晚,但这就是您从 CodeDom 编译类调用方法的方法

您必须使用反射从编译器结果创建程序集...(您的 var cr)

Assembly assembly = cr.CompiledAssembly;

然后您必须创建一个实例你想要的类

object sourceClass = assembly.CreateInstance("YourNamespace.YourClass");

然后你调用类中的任何方法

var result = sourceClass.GetType().InvokeMember("YourMethod", BindingFlags.InvokeMethod, null, sourceClass, new object[] { *Parameters go here* });

并且你调用的方法必须返回的值现在将是“结果”变量的值......非常简单。

Hmmm realy late on the answer but this is how you would invoke a method from a CodeDom compiled class

You have to use reflection to create an assembly from your compiler results...(your var cr)

Assembly assembly = cr.CompiledAssembly;

Then you have to create an instance of the class you want

object sourceClass = assembly.CreateInstance("YourNamespace.YourClass");

Then you invoke any method inside the class

var result = sourceClass.GetType().InvokeMember("YourMethod", BindingFlags.InvokeMethod, null, sourceClass, new object[] { *Parameters go here* });

And with that what ever the method you invoked had to returned would now be the value of the "result" var....pretty easy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文