首页 > 解决方案 > 从字符串的值到表达式

问题描述

谁能帮我用c#,拜托!

如果我有:

bool x = true; 
bool y = true;
string temp = "x & y" ;
bool myBo = temp; // my intention is myBo = x & y;  = true from the string

有可能这样做吗?

谢谢

标签: c#

解决方案


推荐阅读