The values are comes from xml
, user only declare what condition to do.
string condition ="25<10";
Now, I want to use this in if condition like:
if(condition)
{
//my condition
}
and I am getting this error
Cannot implicitly convert type string to bool
Can anyone tell me how to do this?