IKVM.Reflection.Type.__MakeByRefType C# (CSharp) Method

__MakeByRefType() public method

public __MakeByRefType ( Type requiredCustomModifiers, Type optionalCustomModifiers ) : Type
requiredCustomModifiers Type
optionalCustomModifiers Type
return Type
        public Type __MakeByRefType(Type[] requiredCustomModifiers, Type[] optionalCustomModifiers)
        {
            return ByRefType.Make(this, Util.Copy(requiredCustomModifiers), Util.Copy(optionalCustomModifiers));
        }