For example having: ``` csharp var message = "test"; message += "other"; System.Console.WriteLine("main entered"); ``` in main will trigger the optimisations call, while having in `Main()` only: ``` csharp System.Console.WriteLine("main entered"); ``` will not.