Jurassic.Compiler.DynamicILGenerator.CallStatic C# (CSharp) Method

CallStatic() public method

Pops the method arguments off the stack, calls the given method, then pushes the result to the stack (if there was one). This operation can be used to call instance methods, but virtual overrides will not be called and a null check will not be performed at the callsite.
public CallStatic ( System method ) : void
method System The method to call.
return void
        public override void CallStatic(System.Reflection.MethodBase method)
        {
            if (method == null)
                throw new ArgumentNullException("method");

            // Emit the call instruction.
            EmitCall(0x28, method);
        }
DynamicILGenerator