编译并调用生成的方法
我设法使用 CodeDom 创建一个类,并向该类添加一个方法。 现在,有没有办法在构造了 CodeCompileUnit 实例后,编译代码并调用生成的方法? 方法调用必须在与代码生成相同的上下文中完成。
I managed to create a class using CodeDom and add a single method to that class. Now, is there a way to, having constructed the CodeCompileUnit instance, compile the code and invoke the generated method? The method invocation has to be done in the same context as the code generation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
摘自我的朋友的博客:
然后您可以使用反射在类型上创建所需类型的实例并执行所需的任何方法。
Taken from a friend of mine's blog:
You can then use reflection on the types to create an instance of the type you want and execute whatever method you want.