14 lines
340 B
C#
14 lines
340 B
C#
|
#nullable enable annotations
|
|||
|
namespace System.Runtime.CompilerServices;
|
|||
|
|
|||
|
#pragma warning disable
|
|||
|
[AttributeUsage(AttributeTargets.Struct, AllowMultiple = false)]
|
|||
|
public sealed class InlineArrayAttribute : Attribute
|
|||
|
{
|
|||
|
public InlineArrayAttribute (int length)
|
|||
|
{
|
|||
|
this.Length = length;
|
|||
|
}
|
|||
|
|
|||
|
public int Length { get; }
|
|||
|
}
|