标签: c# textbox
我想在按钮点击时将文本框的文本设置为c ++代码。
我尝试过使用
textBox1.Text = "c++ code here";
但它会产生错误,因为代码在c#中。
答案 0 :(得分:1)
您需要手动转义“。
TextBox1.Text = "some code here \"test\" hello...";