radio button checked c# code example
Example 1: c# radio button auto checked
radioButton1.AutoCheck = true;
Example 2: c# radio button checked
radioButton1.Checked = true;
Example 3: c# radio button checked
if(radioButton1.Checked = true;)
{
}