This code:
Type.GetType(\"namespace.a.b.ClassName\")
returns null.
null
and I have in the usings:
using nam
Make sure that the comma is directly after the fully qualified name
typeof(namespace.a.b.ClassName, AssemblyName)
As this wont work
typeof(namespace.a.b.ClassName ,AssemblyName)
I was stumped for a few days on this one