IKVM.Reflection.Type.__MakeArrayType C# (CSharp) Метод

__MakeArrayType() публичный Метод

public __MakeArrayType ( Type requiredCustomModifiers, Type optionalCustomModifiers ) : Type
requiredCustomModifiers Type
optionalCustomModifiers Type
Результат Type
        public Type __MakeArrayType(Type[] requiredCustomModifiers, Type[] optionalCustomModifiers)
        {
            return ArrayType.Make(this, Util.Copy(requiredCustomModifiers), Util.Copy(optionalCustomModifiers));
        }

Same methods

Type::__MakeArrayType ( int rank, Type requiredCustomModifiers, Type optionalCustomModifiers ) : Type