1

它是列表中的代码编辑项

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>();

谢谢

4

1 回答 1

4

像这样的东西?

var item = bindingList.Select((Item,Index) => new { Item, Index })
                      .LastOrDefault(x => x.Item.Number == textBox6.Text);
if (item != null)
{
    bindingList[item.Index] = new Class1() { ... };
}
于 2011-02-06T18:19:31.033 回答