C
Christof Nordiek
Willy Denoyette said:Actually the this pointer is not passed on the stack, managed code used
the CLR calling convention when calling instance methods, here the this
pointer and the first argument (if any) are passed in a register.
Willy.
Even then, the instance method has one parameter more. depending on the size
of the parameter list, this will use extra space on stack, and the passing
of the parameter surely takes time, even if it is to the register.
Christof