I want to get all constructors in class Form1
to calculate the RFC, yes I can get ComboBox
constructor because I can get it from Form1()
body but I can't get other constructor like new TextBox();
or new Button();
because the it out of any method body and lie directly in class body
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
ComboBox cm = new ComboBox();
}
TextBox tttttttttttttttttt = new TextBox();
Button bbbbbbbb = new Button();
}