Type.GetInterfaces() .NET Standard 1.x 的解决方法
Type.GetInterfaces() workaround for .NET Standard 1.x
.NET Core 1.1
支持 Type.GetInterfaces()
方法,该方法提供在给定类型上实现的接口列表。遗憾的是,Type.GetInterfaces()
在 .NET Standard 1.x
中尚不可用。
好消息是它应该包含在 .NET Standard 2.0
中。
与此同时,有谁知道我可以使用的解决方法来获取类型 and/or 的接口列表 类 的列表,它在 [=15= 中实现了给定的接口]?
非常感谢!
这应该可以解决问题。 GetTypeInfo()
是 System.Reflection
命名空间中的扩展方法,是 InstrospectionExtensions
.
的一部分
using System.Reflection;
var interfaces = typeof({SOME_TYPE}).GetTypeInfo().GetInterfaces();
.NET Core 1.1
支持 Type.GetInterfaces()
方法,该方法提供在给定类型上实现的接口列表。遗憾的是,Type.GetInterfaces()
在 .NET Standard 1.x
中尚不可用。
好消息是它应该包含在 .NET Standard 2.0
中。
与此同时,有谁知道我可以使用的解决方法来获取类型 and/or 的接口列表 类 的列表,它在 [=15= 中实现了给定的接口]?
非常感谢!
这应该可以解决问题。 GetTypeInfo()
是 System.Reflection
命名空间中的扩展方法,是 InstrospectionExtensions
.
using System.Reflection;
var interfaces = typeof({SOME_TYPE}).GetTypeInfo().GetInterfaces();