Boo.Lang.Builtins.matrix C# (CSharp) Méthode

matrix() public static méthode

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