gpt4 book ai didi

c# - .NETStandard 1.0/.NET Core 中 Type.GetGenericArguments() 的等价物是什么?

转载 作者:可可西里 更新时间:2023-11-01 07:56:03 25 4
gpt4 key购买 nike

.NETStandard 1.0 中“缺少”方法 System.Type.GetGenericArguments(),我认为 TypeInfo.GenericTypeArguments 的替代品GetGenericArguments(),但不幸的是,当提供开放泛型类型时,它们的行为会有所不同。以下面的代码为例:

Type type = typeof(ICommandHandler<>);
type.GetGenericArguments(); // return { TCommand }
type.GetTypeInfo().GenericTypeArguments; // returns empty array

虽然 GetGenericArguments() 方法返回泛型类型参数 TCommand,但 GenericTypeArguments 只是为相同的开放泛型返回一个空数组类型。

GenericTypeArguments 的确切行为是什么以及 .NET Standard 1.0 中 Type.GetGenericArguments() 的等效行为是什么?

最佳答案

经过进一步调查,Type.GenericTypeArguments 似乎只在类型不是通用类型定义时才返回任何内容。另一方面,TypeInfo.GenericTypeParameters 仅在类型为泛型类型定义时才返回任何值。

以下代码模拟了 Type.GetGenericArguments() 的行为:

type.GetTypeInfo().IsGenericTypeDefinition 
? type.GetTypeInfo().GenericTypeParameters
: type.GetTypeInfo().GenericTypeArguments;

关于c# - .NETStandard 1.0/.NET Core 中 Type.GetGenericArguments() 的等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39129537/

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