参见英文答案 >
Type.GetType(“namespace.a.b.ClassName”) returns null16个
我刚刚注意到函数中的一个错误:
我刚刚注意到函数中的一个错误:
Type.GetType("System.Uri");
返回值为null,而以下函数运行良好…
Type.GetType("System.string"); Type.GetType("System.bool"); Type.GetType("System.DateTime");
…
任何人都知道,为什么返回的Type为null?
编辑:删除Uri双重进入…
解决方法
Type.GetType(“System.Uri”)返回null的原因是该类型位于system.dll而不是mscorlib.dll.您必须使用上面提到的程序集限定名称.
来自MSDN:
typeName
Type: System.StringThe assembly-qualified name of the type to get. See AssemblyQualifiedName. If the type is in the currently executing assembly or in Mscorlib.dll,it is sufficient to supply the type name qualified by its namespace.