vb.net文本框中的C代码

时间:2015-05-01 17:47:56

标签: c vb.net

我想在文本框中显示C代码,所以当你点击一个按钮代码将在一个文本框中,我的问题是VB.net理解该文本作为代码 我正在使用此代码行作为按钮

    textbox2.Text = "
#include <LiquidCrystal.h>
//Set's lcd to the Arduino's ports
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
void setup() {
  lcd.begin(16, 2);
Serial.begin(9600);
}
void loop() {
" 

如何让vb.net忽略“”

之间的C代码

1 个答案:

答案 0 :(得分:3)

你将不得不做这样的事情。

        RichTextBox1.Text = "#include <LiquidCrystal.h>" & vbCrLf & _
        "//Set's lcd to the Arduino's ports" & vbCrLf & _
        "LiquidCrystal lcd(12, 11, 10, 9, 8, 7);" & vbCrLf & _
        "void setup() {" & vbCrLf & _
        "  lcd.begin(16, 2);" & vbCrLf & _
        "Serial.begin(9600);" & vbCrLf & _
        "}" & vbCrLf & _
        "void loop() {"

vbCrLf是回车符号,因此它将开始下一行。