← Back to Question List
C# Code Walkthrough #48
Interpolation Evaluates the Expression
📄 Code
Read carefully — what does this print?1int a = 3;2int b = 4;3Console.WriteLine($"{a} + {b} = {a + b}");