如何从 VB.NET 的列表中查找对象的索引?
假设我有一个列表,并且有一个对象。如何在列表中找到该对象的索引?
Say I have a list, and I have an object. How do I find the index of that object in the list?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 FindIndex 查找通用列表中对象的索引:
这是获取对象索引的最灵活的方法。
但是,如果您只想通过 DefaultEqualityComparer:
如果您不知道它是什么类型,也可以使用
IndexOf
,.NET 将使用 Equals 确定两个对象是否相等(应该是重写不仅可以比较引用)。You can use FindIndex to find the index of an object in a generic List:
This is the most flexible method to get the index of an object.
But the IndexOf method is even simplier and more straightforward if you only want to find an object in a List by the DefaultEqualityComparer:
You can use
IndexOf
also if you don't know what type it is, .NET will use Equals to determine if two objects are equal(should be overridden to not only compare references).