Could anyone help me with c#, please!
If I have:
bool x = true;
bool y = true;
string temp = "x & y" ;
bool myBo = temp; // my intention is myBo = x & y; = true from the string
Is it possible to do that?
Thanks
Could anyone help me with c#, please!
If I have:
bool x = true;
bool y = true;
string temp = "x & y" ;
bool myBo = temp; // my intention is myBo = x & y; = true from the string
Is it possible to do that?
Thanks