CJCoding With Joseph
← Back to Question List
C# Code Walkthrough #48

Interpolation Evaluates the Expression

easyStrings

📄 Code

Read carefully — what does this print?
1int a = 3;
2int b = 4;
3Console.WriteLine($"{a} + {b} = {a + b}");

🎯 Your Answer