IKVM.Reflection.Type.__MakePointerType C# (CSharp) Méthode

__MakePointerType() public méthode

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