Mono.Debugger.Languages.TargetArrayBounds.MakeSimpleArray C# (CSharp) Method

MakeSimpleArray() public static method

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