To make it short what I want to do is convert a simple string like "/" into the actual / symbol so I can use it like this.
The button.Text in the code below will be one of these "+" , "-", "/", "*"
Button button = (Button)sender;
lblAns.Text = (Convert.ToDouble(txtNum1.Text) + button.Text + Convert.ToDouble(txtNum2.Text)).ToString();
I hope this makes sense...
Thanks ahead.