【发布时间】:2014-06-06 20:23:03
【问题描述】:
我有一个包含 3 个项目的列表
reg.ToList() Count = 3 System.Collections.Generic.List<string>
[0] "Text0" string
[1] "Text1" string
[2] "Text2" string
我想改变所有物品的位置,第一个位置而不是最后一个,其余的物品都站在一个位置
对于这个例子
[0] "Text1" string
[1] "Text2" string
[2] "Text0" string
【问题讨论】: