我有一个自定义对象List列表,我想更新一个特定的元素,说从顶部开始的第三个元素,我将如何在C#中做到这一点?
答案 0 :(得分:8)
// Updates a property or member of the item
myList[2].myProperty = something;
// Replaces the item in the list
myList[2] = someNewItem;
答案 1 :(得分:1)
使用List<T>.Item
属性。