Escape Sequences for Literal Brace
To include literal braces, double them: {{ and }}.
Console.WriteLine($"{{Hello}}");Run the Application
Section titled “Run the Application”dotnet runResult
Section titled “Result”{Hello}To include literal braces, double them: {{ and }}.
Console.WriteLine($"{{Hello}}");dotnet run{Hello}