[]
Search the index of specified element in array of numbers.
public static bool FastFind(int[] values, int value, out int index)
Type | Name | Description |
---|---|---|
int[] | values | An array of numbers to search for. |
int | value | The number to search. |
int | index | The index of specified element in array. |
Type | Description |
---|---|
bool | True if element found; false otherwise. |