本文介绍了替换清单项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何将List<>
的项目设置到第一个位置?
例如
How to set an item of a List<>
to the first location?
e.g.
List <int> list = new List<int>
list.Add(10);
list.Add(20);
list.Add(30);
list.Add(40);
如何将值30
设置为列表中的第一个位置?
How to set the value 30
to the first postion in the list?
推荐答案
list[0] = 30;
list.Insert(0, 30);
艾伦(Alan)
Alan
这篇关于替换清单项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!