End Google Ads 201810 - BS.net 01 --> Hello,

I'm trying to create a dynamic radiobutton, however I receive the following error:

Error 1 The type or namespace name 'Radiobutton' could not be found (are you missing a using directive or an assembly reference?)

I'm still a novice in C#, so much help is appreciated:

RadioButton rb1 = new Radiobutton();
Controls.Add(rb1);
rb1.********=new Point(50, 50);
rb1.Text = "testing Radiobutton";

Can you tell me what I'm doing wrong? thank you...

---Star