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.
我正在尝试在经典的 asp 数组中查找项目的索引。我知道循环是如何实现的,但是还有什么我可以使用的吗?indexOf() 或类似的东西?我似乎在网上找不到任何东西
它是字符串数组还是其他类型的对象?
对于标准数据类型,您可以使用 Array.BinarySearch(myArray, searchString),但您必须先对数组进行排序。