When looking at intermediate language, each instruction has a particular byte size.
If I have a method with a total code size (the sum of instructions sizes) of 10 bytes and a method with a total code size of 20 bytes, can I presume that the first one executes faster?
I have no knowledge on how the IL is converted into machine code and thus I would think that the performance is different based on the IL instruction itself and not directly related to its byte size.
Is the execution time of IL directly related to its code size?