gpt4 book ai didi

c# - 获取 CoreCLR 中的可用类型

转载 作者:可可西里 更新时间:2023-11-01 08:25:51 24 4
gpt4 key购买 nike

这很容易在旧的 .NET 中获取所有可用类型(例如对于某些接口(interface)),但我找不到在新的 CoreCLR 中如何做到这一点的方法。

我想要做的是拥有像 GetRepository 这样的功能,它应该寻找 IRepository 的现有实现并返回该类型的新实例。实现将位于不同的项目中。

所以,在 .NET 中我可以使用这样的东西:

AppDomain.CurrentDomain.GetAssemblies().SelectMany(a => a.GetTypes())

目前我对 CoreCLR 的唯一解决方案是:

public T GetRepository<T>()
{
foreach (Type type in typeof(T).GetTypeInfo().Assembly.GetTypes())
if (typeof(T).IsAssignableFrom(type) && type.GetTypeInfo().IsClass)
return (T)Activator.CreateInstance(type);

return default(T);
}

但只有当接口(interface)和实现位于同一个程序集中时它才有效(这不是我的情况)。

谢谢!

最佳答案

因此,这是 Microsoft 的回答: https://github.com/dotnet/coreclr/issues/919

总之,有新的

Microsoft.Framework.Runtime.LibraryManager

public IEnumerable<ILibraryInformation> GetLibraries();
public IEnumerable<ILibraryInformation> GetReferencingLibraries(string name);

等等

UPD:从 RC2 开始使用 Microsoft.Extensions.DependencyModel.DependencyContext 代替:

DependencyContext.Default.CompileLibraries
DependencyContext.Default.RuntimeLibraries

关于c# - 获取 CoreCLR 中的可用类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30007264/

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