'宣言 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
- 検索する数値の配列。
- value
- 検索する数値。
- index
- 配列内の指定された要素のインデックス。
戻り値の型
要素が見つかった場合は true、そうでない場合は false。