在 C# 中:表达式求值函数,如 flash 脚本
重复:如何动态计算 C# 表达式?
See also: C# eval equivalent?如何评估表达式。 也许就像:
int a=1;
int b=3;
int c=Eval("a+b");
或者
int c=int.parse("1+3*(2+3)");
这对我来说似乎很愚蠢。 在c#中可以吗?
Duplicate of: How can I evaluate a C# expression dynamically?
See also: C# eval equivalent?
How to evaluate expression. Maybe like:
int a=1;
int b=3;
int c=Eval("a+b");
or
int c=int.parse("1+3*(2+3)");
This seems stupid to me. is it possible in c#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以获取代码,并使用 CSharpCodeProvider 编写一个 Eval 函数,该函数实际上将代码编译到内存中的程序集中,然后执行该代码。
请参阅此CodeProject 文章获取示例源代码。
You can take code, and using the CSharpCodeProvider write an Eval function that actually compiles your code into an in-memory assembly and then executes that code.
See this CodeProject article for sample source.
不直接。 C# 不包含运行时编译器。
Mono 附带的一个开源项目可以做到这一点。
Not directly. C# contains no runtime compiler.
There is an open source project attached to Mono that will do this.
我在此列举了我所知道的几种不同方法 回答“如何动态评估 C# 表达式”,其中包括各种 .NET 框架解决方案,例如 CodeDomProvider、DataBinder.Eval、DataTable.Compute、Document.InvokeScript 等。
I enumerate several different approaches that I am aware of in this answer to "How can I evaluate a C# expression dynamically" which include various .NET framework solutions such as CodeDomProvider, DataBinder.Eval, DataTable.Compute, Document.InvokeScript, and more.