如何找到 List的项目?基于它的索引
我想显示存储在我的列表中的文本。 我有索引号,并且想使用索引号从集合中获取项目。
谢谢
I would like to display text that is stored in my list.
I have the index number, and would like to use the index number to get the item from the collection.
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果它是一个
List
,为什么不直接使用:?
If it's a
List<string>
, why not just use:?
您可以使用 ElementAt:
或者简单地使用索引器,例如:
You can use ElementAt:
Or simply use the indexer, like: