This code:
Type.GetType(\"namespace.a.b.ClassName\")
returns null.
null
and I have in the usings:
using nam
Try this method.
public static Type GetType(string typeName) { var type = Type.GetType(typeName); if (type != null) return type; foreach (var a in AppDomain.CurrentDomain.GetAssemblies()) { type = a.GetType(typeName); if (type != null) return type; } return null; }