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

CtorArrayIntStartEqualsLength() 개인적인 메소드

private CtorArrayIntStartEqualsLength ( ) : void
리턴 void
        public static void CtorArrayIntStartEqualsLength()
        {
            // Valid for start to equal the array length. This returns an empty span that starts "just past the array."
            int[] a = { 91, 92, 93 };
            Span<int> span = new Span<int>(a, 3);
            span.Validate<int>();
        }
    }