using System;
public class Program
{
public static void Main()
string Text1 = """
I have 8 spaces
I should have 12, why not?
""";
string Text2 = @" I have 8 spaces
I should have 12, why not?";
string Text3 = " I have 8 spaces\n I should have 12, why not?";
Console.WriteLine(Text1 == Text2);
Console.WriteLine(Text1 == Text3);
}