Hi i'm making an simple c# computation sample Label1.Text = textBox1.Text + textbox2.Text i'm having a problem when i try to input 88.5 or 80.3 and compute my program is keep crashing a getting errors.i already convert the text to Int and here's my code:
int i;
i = Convert.ToInt32(textBox1.Text) + Convert.ToInt32(textBox2.Text);
Label1.Text= i.ToString();
But it's working if i insert 88 and 80 . i know i miss something on this.anyone can help me? thank you