textBox1.lines.Take(1)如何转化成字符串
textBox1.lines.Take(1)如何转化成字符串。
可以这样写吗?
if(textBox1.lines.Take(1)==textBox2.lines.Take(1))
{
……
}
------解决方案--------------------用First。
if(textBox1.lines.First()==textBox2.lines.First())
------解决方案--------------------C# code
TextBox text = new TextBox();
text.Lines=new string[]{"1","2","3","4"};
string xstr = text.Lines.Take(1).FirstOrDefault();