Changeset 271 for Include/Classes/System/Collections
- Timestamp:
- Jun 12, 2007, 6:15:09 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/Collections/ArrayList.ab
r233 r271 224 224 /*Const*/ Virtual Function IndexOf(object As Object, startIndex As Long, count As Long) As Long 225 225 Dim i As Long 226 Dim last = Math.Min(startIndex + count - 1, size)226 Dim last = System.Math.Min(startIndex + count - 1, size) 227 227 For i = startIndex To last 228 228 If object.Equals( pObject[i] ) Then
Note:
See TracChangeset
for help on using the changeset viewer.