"cannot implicitly convert type int to string" can someone tell me how to correct this error.
this is my code:
int num1,num2,num3;
if(num1<num2&&num1<num3)
txtLow.Text=(num1);
else if(num2<num1&&num2<num3)
txtLow.Text=(num2);
else
txtLow.Text=(num3);
it's a windows application that will display the lowest number.