T
toki
public class Form1 : System.Windows.Forms.Form
{
MyClass myclass;
public Form1()
{
myclass = new MyClass();
}
}
In one moment i need to know all the classes created. How
can i know this. I can get all the controls with
System.Collections.IEnumerator enume =
this.Controls.GetEnumerator();
but what about the classes?
Thanks,
{
MyClass myclass;
public Form1()
{
myclass = new MyClass();
}
}
In one moment i need to know all the classes created. How
can i know this. I can get all the controls with
System.Collections.IEnumerator enume =
this.Controls.GetEnumerator();
but what about the classes?
Thanks,