Mono.Debugger.Languages.TargetArrayBounds.MakeSimpleArray C# (CSharp) 메소드

MakeSimpleArray() 공개 정적인 메소드

public static MakeSimpleArray ( int length ) : TargetArrayBounds
length int
리턴 TargetArrayBounds
        public static TargetArrayBounds MakeSimpleArray(int length)
        {
            TargetArrayBounds bounds = new TargetArrayBounds { Rank = 1 };
            bounds.length = length;
            return bounds;
        }