如何将文本框的文本设置为c++代码
本文关键字:文本 c++ 代码 设置 | 更新日期: 2023-09-27 18:04:32
我想在按钮点击时将文本框的文本设置为c++代码。
我试过使用
textBox1.Text = "c++ code here";
但是它给出了错误,因为代码是c#。
需要手动转义像"这样的字符。
TextBox1.Text = "some code here '"test'" hello...";
本文关键字:文本 c++ 代码 设置 | 更新日期: 2023-09-27 18:04:32
我想在按钮点击时将文本框的文本设置为c++代码。
我试过使用
textBox1.Text = "c++ code here";
但是它给出了错误,因为代码是c#。
需要手动转义像"这样的字符。
TextBox1.Text = "some code here '"test'" hello...";