My question is why does the C# compiler not allow inlining of the C# MSIL functions. I'm aware the JIT will inline the actual X86 assembly in some cases but I'm asking about the actual MSIL "assembly" code.
Why does the C# compiler not offer these types of optimisation?
Is it because there would be minimal to no gain? Or it simply has never been implemented?