如何使用 CodeDOM 公开成员对象?
我到处都能看到有关如何使用 System.CodeDom 命名空间编译程序集的教程。
但是如何从运行时编译的程序集访问程序集的成员对象(我不是在谈论访问类,我想访问特定的成员变量)?在 Microsoft Script Control 中,可以使用 AddObject 方法来完成。
我想如果在运行时编译的程序集的行为与其他普通程序集一样,那么我应该使用 .NET 远程处理?但这是不是太过分了?我希望有一个更简单的方法。
Everywhere I see tutorials on how to compile assemblies using the System.CodeDom namespace.
But how can I access a member object of an assembly from a runtime compiled assembly (I'm not talking about accessing a class, I want to access a specific member variable)? In Microsoft Script Control it can be done with the AddObject method.
I guess if the assembly that is compiled at runtime behaves like every other ordinary assembly, then I should use .NET remoting? But isn't it an overkill? I wish there was an easier way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过将对象传递给运行时编译的程序集中的适当方法?
By passing your object to an appropriate method in the runtime compiled assembly?