↧
C# compiler doesn’t always emits a virtual call (callvirt)
MSIL provides two ways to call a method in IL level with opcodes call and callvirtrespectively. In a nutshell call opcode calls the method with early binding where as callvirt makes the late bound...
View Article