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

__MakePointerType() public method

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