如何在c#中获得列表中新添加项的索引?

本文关键字:添加 索引 新添加 列表 | 更新日期: 2023-09-27 18:02:22

当我将一个项目(类的实例)添加到列表中时,我需要知道新项目的索引。有任何函数都可以吗?

示例代码:

MapTiles.Add(new Class1(num, x * 32 + cameraX, y * 32 + cameraY));

如何在c#中获得列表中新添加项的索引?

MapTiles.Count将为您提供将添加到列表中的下一个项目的索引

类似:

Console.WriteLine("Adding " + MapTiles.Count + "th item to MapTiles List");
MapTiles.Add(new Class1(num, x * 32 + cameraX, y * 32 + cameraY));

Class1 newTile = new Class1(num, x*32 + cameraX, y*32 + cameraY);
MapTiles.Add(newTile);
int index = MapTiles.IndexOf(newTile);

如果您总是使用.Add(T);方法而不使用.Remove(T);,则索引将是Count - 1

在添加前立即读取Count

int index = MapTiles.Count;
MapTiles.Add(new Class1(num, x * 32 + cameraX, y * 32 + cameraY));