|  | IndexArrayFindIndex(Int32, Int32) Method | 
            Searches for the given index from the given start index for the given value.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic int FindIndex(
	int j,
	int startIndex
)
Public Function FindIndex ( 
	j As Integer,
	startIndex As Integer
) As Integer
public:
int FindIndex(
	int j, 
	int startIndex
)
member FindIndex : 
        j : int * 
        startIndex : int -> int Parameters
- j  Int32
- The value to search for.
- startIndex  Int32
- The zero-based starting index of the search
Return Value
Int32The zero-based index of the first occurrence of the value 
j
            if found; otherwise, –1.
 See Also
See Also