using System; public class Test { public static void Main() { string helloWorld = @"""Hello World"""; string test1 = $"He said to me, {helloWorld}. How are you?"; helloWorld = "Hello World"; string test2 = $@"He said to me, ""{helloWorld}"". How are you?"; Console.WriteLine($"{test1}\n{test2}"); } }