gpt4 book ai didi

c# - 如何在 C# 中获取所有已加载类型的列表?

转载 作者:可可西里 更新时间:2023-11-01 08:54:34 27 4
gpt4 key购买 nike

我需要检索从给定的一组程序集中加载的所有枚举。

最佳答案

List<Type> list = new List<Type>();
foreach (Assembly ass in AppDomain.CurrentDomain.GetAssemblies())
{
foreach (Type t in ass.GetExportedTypes())
{
if (t.IsEnum)
{
list.Add(t);
}
}
}

应该这样做,对于当前 Appdomain 加载的所有程序集,要仅从定义的程序集中获取,只需调整 ;-)

关于c# - 如何在 C# 中获取所有已加载类型的列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1914058/

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