No.
Either use verbatim string literals as you have, or escape the "
using backslash.
string test = "He said to me, "Hello World" . How are you?";
The string has not changed in either case - there is a single escaped "
in it. This is just a way to tell C# that the character is part of the string and not a string terminator.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…