This code:
Type.GetType(\"namespace.a.b.ClassName\")
returns null.
null
and I have in the usings:
using nam
If the assembly is referenced and the Class visible :
typeof(namespace.a.b.ClassName)
GetType returns null because the type is not found, with typeof, the compiler may help you to find out the error.