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

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

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