gpt4 book ai didi

c# - Type.GetType ("namespace.a.b.ClassName") 返回 null

转载 作者:IT王子 更新时间:2023-10-29 03:29:49 24 4
gpt4 key购买 nike

这段代码:

Type.GetType("namespace.a.b.ClassName")

返回 null

我在使用中:

using namespace.a.b;

更新:

该类型存在,它在不同的类库中,我需要通过字符串名称来获取它。

最佳答案

Type.GetType("namespace.qualified.TypeName") 仅当在 mscorlib.dll 或当前执行的程序集中找到该类型时才有效。

如果这些都不是真的,您将需要一个 assembly-qualified name :

Type.GetType("namespace.qualified.TypeName, Assembly.Name")

关于c# - Type.GetType ("namespace.a.b.ClassName") 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1825147/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com