它是列表中的代码编辑项
List<class1> lst = new List<class1>();
int index = lst.FindLastIndex(s => s.Number == textBox6.Text);
if(index != -1) { lst[index] = new Class1() { ... }; }
请转换为 BindingList 的代码
BindingList<class1> lst = new BindingList<class1>();
谢谢