i have two values in windows from the final value have the negative value when i perform the operation its sum the negative value mathematic that's correct but is there any solution we can covert the nagtive valie into postive i search a lot on stackoverflow but i can't get my right answerHTML Code:private void profitbefore() { decimal final = 0; decimal fullfinal = 0; if(decimal.TryParse(txtprofitbefore.Text,out final) && decimal.TryParse(txtfinal.Text,out fullfinal)) { decimal finalfull = final - fullfinal; txtbeforeexp.Text = finalfull.ToString("#,##0.00"); } }