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

matrix() public static method

public static matrix ( Type elementType ) : Array
elementType System.Type
return System.Array
        public static Array matrix(Type elementType, params int[] lengths)
        {
            if (null == elementType)
            {
                throw new ArgumentNullException("elementType");
            }
            return Array.CreateInstance(elementType, lengths);
        }