Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 .aspx 程序,它有一个可以编辑和删除的列表。我需要找到一种方法来检查列表索引是否存在,以便我可以相应地填充我的面板。我不是在列表中寻找特定元素。例如,就像 list[2] 一样简单。我会为此提供代码,但我似乎找不到任何至少能让我开始的东西。任何帮助是极大的赞赏。谢谢你。
您是否要查找列表的长度?
your_list.count 会给你元素的数量,所以索引from 0 to Count - 1存在。您也可以确认这一点list[2] != null。
your_list.count
from 0 to Count - 1
list[2] != null