Boo.Lang.Builtins.array C# (CSharp) Method

array() public static method

public static array ( Type elementType, int length ) : Array
elementType System.Type
length int
return System.Array
        public static Array array(Type elementType, int length)
        {
            return matrix(elementType, length);
        }

Same methods

Builtins::array ( Type elementType, ICollection collection ) : Array
Builtins::array ( Type elementType, IEnumerable enumerable ) : Array
Builtins::array ( IEnumerable enumerable ) : object[]