这段代码
//串口发送数据
private void btnsend_Click(object sender, EventArgs e)
{
for (int i = 0; i < txtsend.Lines.Count(); i++)
comport.WriteLine(txtsend.Lines[i]);
}
其中txtsend.Lines.Count(); 运行时,显示错误,
txtsend定义为private System.Windows.Forms.TextBox txtsend;
运行时显示错误为:
错误 2 “System.Array”不包含“Count”的定义,并且找不到可接受类型为“System.Array”的第一个参数的扩展方法“Count”(是否缺少 using 指令或程序集引用?)
请求大家一下,这是什么问题呀?如果 我就想用Count,不想改成GetLength,该如何改呀?
|