SOFARI HASSANE

SOFARI HASSANE

  • NA
  • 237
  • 20.5k

Currency conversion code issue

Feb 9 2019 7:29 AM
Hi all, i am looking to convert dollar to local currency of my country (Cfa), i use combobox, the result i get example on the catch is wrong
 
here is my code: 
  1. private void button2_Click(object sender, EventArgs e)  
  2.        {  
  3.               
  4.             int selectIndex = dev1.SelectedIndex;  
  5.   
  6.   
  7.           int  money = int.Parse(mnt1.Text);  
  8.          int   rate = int.Parse(mnt2.Text);  
  9.   
  10.           
  11.   
  12.            if (dev1.SelectedItem.ToString()=="Dollar" && dev2.SelectedItem.ToString()=="Cfa")  
  13.   
  14.            {  
  15.                int conversion = money * rate;  
  16.                int convStr = Convert.ToInt32(conversion);  
  17.                total.Text = convStr.ToString();  
  18.   
  19.      
  20.       } 
thank you for helping me see a little clearer

Answers (2)