我正在monodevelop 中编写ac#winform 应用程序,我必须使用属性Lines 将多行文本框的几行的内容设置为特定的字符串值。所以我写了这段代码,在 Visual Studio 中不会产生异常并且可以正常工作,但在单声道中不起作用:
public string[] newLines = new string[36];
public void Main_Form_Load(object sender, EventArgs e)
{
newLines[3] = "</CsOptions>";
textBox1.Lines = newLines;
}
特别是指令textBox1.Lines = newLines;
给出了一个空引用异常,当我删除它时,异常过期。