Skip to main content
✏️ Code CompletionC# C# / .NET Easy+10 XP

String Interpolation

Complete the string interpolation.

✏️ Fill in the blank
string name = "World";
string msg = ___"Hello, {name}!";

✏️ Type the missing code: