'宣言 Public Shared Function FastFind( _ ByVal values() As System.Integer, _ ByVal value As System.Integer, _ ByRef index As System.Integer _ ) As System.Boolean
'使用法 Dim values() As System.Integer Dim value As System.Integer Dim index As System.Integer Dim value As System.Boolean value = Utils.FastFind(values, value, index)
パラメータ
- values
- An array of numbers to search for.
- value
- The number to search.
- index
- The index of specified element in array.
戻り値の型
True if element found; false otherwise.