#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; } }