System.SpanTests.ReadOnlySpanTests.CtorArrayInt2 C# (CSharp) 메소드

CtorArrayInt2() 개인적인 메소드

private CtorArrayInt2 ( ) : void
리턴 void
        public static void CtorArrayInt2()
        {
            long[] a = { 90, 91, 92, 93, 94, 95, 96, 97, 98 };
            ReadOnlySpan<long> span = new ReadOnlySpan<long>(a, 3);
            span.Validate<long>(93, 94, 95, 96, 97, 98);
        }