如何执行codeDom生成的代码?
我刚刚使用 codeDom 生成了 .cs 文件。有人可以解释我如何执行它吗?
I just generated the .cs file using codeDom. Can someone explain how do I execute it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面的代码将允许您使用 codedom 编译代码,然后您可以向用户显示代码编译是否正确。它甚至还创建了一个 DLL。
谢谢
亚历克斯
The code below will allow you to compile the code using the codedom and then you can show the user if the code compiled correctly or not. It even creates a DLL as well.
Thanks
Alex
事情没那么简单。 请参阅此处了解入门知识。基本上,CodeDom 支持诸如代码生成和动态编译等方案。因此,使用 CodeDom 创建的 .cs 文件不是通常意义上的可执行文件。
It's not quite that simple. See here for a primer. Basically the CodeDom supports scenarios such as code generation and dynamic compilation. So .cs files created with the CodeDom are not executables in the usual sense.