C#文本框排序,为什么排不对?List list=new List();foreach(string s in textBox1.Lines)list.Add(s);
list.Sort();textBox1.Lines=list;
textBox1.Lines=list; -> textBox1.Text=string.Join("\r\n", list);