Type.MakeGenericSignatureType(Type, Type[]) 方法
定义
创建一个泛型签名类型,该类型允许第三方重新实现反射,从而完全支持在查询类型成员时使用签名类型。Creates a generic signature type, which allows third party reimplementations of Reflection to fully support the use of signature types in querying type members.
public:
static Type ^ MakeGenericSignatureType(Type ^ genericTypeDefinition, ... cli::array <Type ^> ^ typeArguments);
public static Type MakeGenericSignatureType (Type genericTypeDefinition, params Type[] typeArguments);
static member MakeGenericSignatureType : Type * Type[] -> Type
Public Shared Function MakeGenericSignatureType (genericTypeDefinition As Type, ParamArray typeArguments As Type()) As Type
参数
- genericTypeDefinition
- Type
泛型类型定义。The generic type definition.
- typeArguments
- Type[]
类型参数数组。An array of type arguments.
返回
泛型签名类型。A generic signature type.