c# – Type.GetType不工作

前端之家收集整理的这篇文章主要介绍了c# – Type.GetType不工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > 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.String

The 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.

原文链接:https://www.f2er.com/csharp/98326.html

猜你在找的C#相关文章