También puede definir una constante para el carácter y utilizarla donde sea necesario.
Const quote As String = """"
TextBox1.Text = "She said, " & quote & "You deserve a treat!" & quote
const string quote = "\"";
textBox1.Text = "She said, " + quote + "You deserve a treat!"+ quote ;
const String^ quote = "\"";
textBox1->Text = String::Concat("She said, ",
const_cast<String^>(quote), "You deserve a treat!",
const_cast<String^>(quote));