gpt4 book ai didi

C#关于类的GetType的问题

转载 作者:行者123 更新时间:2023-11-30 13:43:14 24 4
gpt4 key购买 nike

我有一个程序集 asdf.dll,它有一个类“Class1”。

如何获取Class1的类型?

string a = "Class1"; //Class1 is the name of class in asdf.dll
string typeString = typeof(Class1).FullName; // here I only have the string Class1 and not Class Class1
AssemblyName assemblyName = AssemblyName.GetAssemblyName("asdf.dll");
Type type = Type.GetType(typeString + ", " + assemblyName);

如何从包含类名的字符串中获取类的类型?

最佳答案

Type t = Type.GetType("MyDll.MyClass,Mydll")

其中 MyDll.MyClass 是您想要的类/窗体的类位置。 Mydll 是您的 dll 名称。你想调用谁。

关于C#关于类的GetType的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/629087/

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