When I need code template, I can use Python as follows.
templateString = """
%s
%s
%s
"""
print templateString % ("a","b","c")
How do I implement the equivalent with C#?
I tried
using System;
class DoFile {
static void Main(string[] args) {
string templateString = "
{0}
{1}
{2}
";
Console.WriteLine(templateString, "a", "b", "c");
}
}
But I got
dogen.cs(86,0): error CS1010: Newline in constant
dogen.cs(87,0): error CS1010: Newline in constant
dogen.cs(88,0): error CS1010: Newline in constant
Of course templateString = "{0}\n{1}\n{2}\n";
works, but I need to use multiple line template as the templateString is for generating a part of code, and it's really long.