如何将字符串转换为C#中的代码
我看到c++中有这样的问题 我是一个非常初学者,我需要一个非常简单的例子如何做到这一点。 用户在文本框中写入代码,我需要做的是执行它 如何???
I saw there is such question in c++
I am a very begginer and I need a very simple example how to do it .
the user writes code in the text box and what I need o do is to execute it
how???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 System.CodeDom 命名空间中的类将 C# 编译为内存中的程序集,并即时运行它们。 这是一个迷你教程。
或者,您可以使用 Reflection.Emit 动态构建代码。
You can use the classes in the System.CodeDom namespace to compile C# into in-memory assemblies, and run them on the fly. Here is a mini-tutorial.
Alternatively, you can use Reflection.Emit to construct code on the fly.
检查此示例中使用的方法。
Check the approach used in this example.