Hello. Please tell me why in this code the output is a blank screen.
class a { static void Meth(int x, int y) { Console.WriteLine(x + y); } static void Main() { Task t = new Task(() => Meth(5, 4)); t.Start(); } }
What especially surprised me was that through step-by-step debugging, the compiler does not go into the Meth method at all. Why