Hello eveybody , i am just new into the C# and VS , and my problem is with radiobutton,Here's the code.
i cannot use more than two button .
private void button3_Click(object sender, EventArgs e)
{
string output;
output = "[" + this.textBoxUID.Text + "]" ;
output += this.textBoxCompany.Text;
output += this.textBoxDate.Text;
output += (string)(this.radioButtonby.Checked? "Low" : "Medium" : "High" ) ; //<<<here
this.textBoxOuput.Text = output;
}