consulo-csharp
consulo-csharp copied to clipboard
Escaping for string interpolation
using System;
class Example {
static void Main() {
int b = 1;
string str = $"test {{";
Console.WriteLine(str);
str = $"test }}";
Console.WriteLine(str);
str = $"test {{}}";
Console.WriteLine(str);
}
private static String c(String str) {
return str;
}
}