3月
21
2020
Can I have a concise code snippet that would incur JIT inlining please?
I'm trying to produce some "Hello World" size C# code snippet that would incur JIT inlining. So far I have this: class Program { static void Main(string[] args) { Console.WriteLine( GetAssembly().FullName ); Console.ReadLine(); } static Assembly GetAssembly() { return System.Reflection.Assembly...