Hello
10+20=30. I make loop with "for each"activity to get the calculated result. Because other are A+B-C=D etc.
First loop , i get 10 and keep it in realvalue(int type) and assign to int_result. Initial value of int_result is 0. The problem is here, second loop , i get + or - , i convert to int
like convert.toint32(str_sign.ToString) , it return error when run .
The calculation logic is as follow,
int_result=int_result+realvalue+convert.toint32(str_sign.ToString)
1 time loop = 0+10+0
2time loop= 0+10++ =10+
3time loop=10+20=30
Thanks @Pravin_Patil1
This will not solve my case i assume, because the plus(+)or minus(-) from the equation will enter into the str_sign. Let me know the other way.