Skip to main content
🔮 Output PredictionC# C# / .NET Easy⚡+10 XP

String Interpolation

What does this output?

C# / .NET
string name = "World";
Console.WriteLine($"Hello, {name}!");

🔮 What is the output?