如何从List <t>元素集合中更新特定元素?</t>

时间:2009-07-09 17:37:26

标签: c#

我有一个自定义对象List列表,我想更新一个特定的元素,说从顶部开始的第三个元素,我将如何在C#中做到这一点?

2 个答案:

答案 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属性。