System.Runtime.CompilerServices.FixedBufferAttribute
namespace System.
Runtime.
CompilerServices
{
public sealed class FixedBufferAttribute :
Attribute
{
public Type ElementType { get; }
public int Length { get; }
public FixedBufferAttribute(
Type elementType,
int length);
}
}