CodeRefractor
CodeRefractor copied to clipboard
Compiler Optimizations Aren't Always Called
For example having:
var message = "test";
message += "other";
System.Console.WriteLine("main entered");
in main will trigger the optimisations call, while having in Main()
only:
System.Console.WriteLine("main entered");
will not.