System.Reflection.Metadata.Parameter
namespace System.Reflection.Metadata
{
public struct Parameter
{
public ParameterAttributes Attributes { get; }
public int SequenceNumber { get; }
public StringHandle Name { get; }
public ConstantHandle GetDefaultValue();
public BlobHandle GetMarshallingDescriptor();
public CustomAttributeHandleCollection GetCustomAttributes();
}
}