V
VR
Hello,
Type oType1 = Type.GetType("System.Int32");
Type oType2 = Type.GetType("System.Windows.Forms.Label");
After executing the code above, oType1 is set to
System.Int32 (valid type), while oType2 is set to null.
I do have at the top of the file:
using System.Windows.Forms;
and
System.Windows.Forms are also seen in References.
What am I doing wrong? Thanks for the help.
VR
Type oType1 = Type.GetType("System.Int32");
Type oType2 = Type.GetType("System.Windows.Forms.Label");
After executing the code above, oType1 is set to
System.Int32 (valid type), while oType2 is set to null.
I do have at the top of the file:
using System.Windows.Forms;
and
System.Windows.Forms are also seen in References.
What am I doing wrong? Thanks for the help.
VR