Hello everybody, I've been facing some problems using Reflection. I have a class name, for example
string name = "System.Windows.Forms.Button";
so, I would like to get a Type object of the name variable refers to.
The method Type.GetType() accepts a string argument, but it doesn't work,
that is Type.GetType("System.Windows.Forms.Button") always returns Null.
Could someone help me?
--
Ramon Pereira Lopes
