System.Reflection.Metadata.GenericParameter
namespace System.Reflection.Metadata
{
public struct GenericParameter
{
public EntityHandle Parent { get; }
public GenericParameterAttributes Attributes { get; }
public int Index { get; }
public StringHandle Name { get; }
public GenericParameterConstraintHandleCollection GetConstraints();
public CustomAttributeHandleCollection GetCustomAttributes();
}
}