System.Runtime.CompilerServices2.InlineArrayAttribute
Indicates that the instance's storage is sequentially replicated "length" times.
namespace System.Runtime.CompilerServices2
{
internal sealed class InlineArrayAttribute : Attribute
{
public int Length { get; }
public InlineArrayAttribute(int length);
}
}