if (txtMath.text >= "90")
lblgrad.Text = "A+";
else
if (txtMath.Text >= "80")
lblgrad.Text = "A";
else if (txtMath.Text >= "70")
lblgrad.Text = "B";
else if (txtMath.Text == "60")
lblgrad.Text = "c";
else if (txtMath.Text == "50")
lblgrad.Text = "D";
else if (txtMath.Text == "50")
MessageBox.Show ("You are failed in your exaim");
======================================================================================
It give error as below
//Error 1 Operator '>=' cannot be applied to operands of type //'string' and 'string'
Pleas help me in this matter as soon as possible