System.SpanTests.SpanTests.CtorArrayIntInt2 C# (CSharp) 메소드

CtorArrayIntInt2() 개인적인 메소드

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