gpt4 book ai didi

c# - 轻松获得最后一个入场位置?

转载 作者:太空宇宙 更新时间:2023-11-03 19:26:55 25 4
gpt4 key购买 nike

我可以用来检索最后一个条目位置的最佳或更简单的容器是什么?

或者没有比使用 Count 更好或更容易的方法了?可以依赖计数吗?

例子:

List<Class> myList = new List<Class>();
int lastEntry = myList.Count - 1;
Message.Box(myList[lastEntry].Name);

此列表没有并发写入,主要是读取。

最佳答案

使用 Count 适用于 List<T> -- 或任何其他实现 ICollection<T> 的东西或 ICollection -- 但你有一个 off-by-one error在你的代码中。应该是……

int lastEntry = myList.Count - 1;    // index is zero-based

关于c# - 轻松获得最后一个入场位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7956455/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com