繁体   English   中英

我如何将文本框的文本设置为C ++代码

[英]how can i set the text of a textbox to a c++ code

我想在单击按钮时将文本框的文本设置为C ++代码。

我试过使用

textBox1.Text = "c++ code here";

但是它给出了错误,因为代码在c#中。

您需要手动转义“”这样的字符。

TextBox1.Text = "some code here \"test\" hello...";

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM