我有以下清单:
var list = new List<string>();
//
list.Add("foo");
list.Add("baa");
做点什么..
if(foo) {
//how to put baa in as first element in list?
}
我正在寻找替代方案:
string item = "baa";
docTypes.Remove(item);
docTypes.Insert(0, item);
最佳答案
别无选择,这就是您的方式。如果您想提高效率并知道索引,则可以使用RemoveAt
:
int index = 1;
docTypes.Insert(0, docTypes[index]);
docTypes.RemoveAt(index + 1);
关于c# - 如何更新列表中项目的索引?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8774743/