If you have a string with a numerous double quotes,
in PHP you can do this:
file.WriteLine('<controls:FormField Name="Strasse" LabelText="Strasse">');
in C# you have to do this:
file.WriteLine("<controls:FormField Name=\"Strasse\" LabelText=\"Strasse\">");
Is there a way in C# to do what you can do above in PHP, something like the @"c:\temp" which you can do so that you don't need double slashes?
Thanks Fredrik, that makes even quotes and curly brackets in a String.Format fairly readable:
file.WriteLine(String.Format(@"<TextBox Text=""{{Binding {0}}}""
Style=""{{DynamicResource FormularFieldTextBox}}""/>", fieldName));