I have the following declarations:
int value1 =5 , value2 =10 ,value3;
string calculate ="value1 + value2"; // dynamic string
I need to perform
value3 = convert.To int32(calculate );
Is there any possible to compute dynamic variable assigning …
1 Answer