T
Thomas Sondergaard
Why doesn't this work:
Assembly.Load(AssemblyName.GetAssemblyName("C:/WINDOWS/Microsoft.NET/Framewo
rk/v1.1.4322/System.Windows.Forms.dll"));
Type t = Type.GetType("System.Windows.Forms.Label");
I would except Type.GetType() above to return an instance of Type but it
returns null. If I iterate over all the types in all the assemblies I can
find it, but Type.GetType() can't.
Any ideas?
Cheers,
Thomas
Assembly.Load(AssemblyName.GetAssemblyName("C:/WINDOWS/Microsoft.NET/Framewo
rk/v1.1.4322/System.Windows.Forms.dll"));
Type t = Type.GetType("System.Windows.Forms.Label");
I would except Type.GetType() above to return an instance of Type but it
returns null. If I iterate over all the types in all the assemblies I can
find it, but Type.GetType() can't.
Any ideas?
Cheers,
Thomas