我有一个列表,想删除第一项,同时保持下一项的索引相同。例如:
public List<string> Fruit
{
get
{
List<string> fruits = dataSource.GetFruits();
return messageStatuses ;
}
}
结果返回
[0] -- apple
[1] -- grape
[2] -- orange
[3] -- peach
当第一项被删除时,结果应该是:
[1] -- grape
[2] -- orange
[3] -- peach