我制作了一个GUI计算器。因此,当有人按下按钮时,数字和符号会显示在标签中,然后当他们按下输入时,计算机会捕获字符串,这就是我需要帮助的地方。我知道在Python中有一个可以使用的eval语句在C#中有类似的东西。
如果有帮助,这是代码。 具体来看看方法button_click
public class form1 : Form
{
private Label lab;
private Button button2;
private Button button;
private Button plus;
private MathFunctions.MathParser calc;
public static void Main()
{
Application.Run(new form1());
}
public form1()
{
// Initialize controls
...
}
private void button_Click(object sender,System.EventArgs e)
{
string answer = lab.Text;
}
private void button2_Click(object sender,System.EventArgs e)
{
lab.Text = lab.Text + "2";
}
private void button_plus(object sender,System.EventArgs e)
{
lab.Text = lab.Text + "+";
}
}
答案 0 :(得分:1)
在C#中你没有eval。你原则上可以在运行时生成代码,编译代码,生成程序集然后执行代码,或者你可以通过发出IL来吐出动态方法,但所有这些都不是很直接。
我建议您使用一种众所周知的方法解析字符串,然后创建expression tree。
或者您可以使用已弃用的javascript引擎仅用于解析表达式。
请参阅Best and shortest way to evaluate mathematical expressions
答案 1 :(得分:0)
既然你熟悉python为什么不用它呢?在C#代码中创建IronPython脚本引擎对象。这是一个片段:
string expression = lab.Text; // @"540 + 4 / 3" try to test
ScriptEngine engine = Python.CreateEngine();
ScriptSource source = engine.CreateScriptSourceFromString(expression, SourceCodeKind.Expression);
int result = source.Execute<int>();