gpt4 book ai didi

c# - 获取实现某个抽象类的所有类

转载 作者:行者123 更新时间:2023-11-30 14:47:26 34 4
gpt4 key购买 nike

我正在尝试获取实现某个抽象类的所有类。我正在尝试使用以下代码来做到这一点:

var type = typeof(BaseViewComponent);
var types = Assembly
.GetEntryAssembly()
.GetReferencedAssemblies()
.Select(Assembly.Load)
.SelectMany(s => s.GetTypes())
.Where(p => type.IsAssignableFrom(p));

但到目前为止,我只能自己获取抽象类。不是任何实现该基类的类。

我必须更改什么才能获得实现此抽象基类的所有类?

最佳答案

using System.Reflection;
using Microsoft.Extensions.DependencyModel;
var asmNames = DependencyContext.Default.GetDefaultAssemblyNames();
var type = typeof(BaseViewComponent);

var allTypes = asmNames.Select(Assembly.Load)
.SelectMany(t => t.GetTypes())
.Where(p => p.GetTypeInfo().IsSubclassOf(type));

关于c# - 获取实现某个抽象类的所有类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44998945/

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