Jurassic.Compiler.DynamicILGenerator.LoadVirtualMethodPointer C# (CSharp) Метод

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

Pushes a pointer to the native code implementing the given method onto the evaluation stack. This method cannot be used to retrieve a pointer to a static method.
The method is static.
public LoadVirtualMethodPointer ( System method ) : void
method System The method to retrieve a pointer for.
Результат void
        public override void LoadVirtualMethodPointer(System.Reflection.MethodBase method)
        {
            if (method == null)
                throw new ArgumentNullException("method");
            if (method.IsStatic == true)
                throw new ArgumentException("The given method cannot be static.", "method");
            var token = this.GetToken(method);
            Emit2ByteOpCodeInt32(0xFE, 0x07, 0, 1, token);
            PushStackOperand(VESType.NativeInt);
        }
DynamicILGenerator