Bridge

String..::..IndexOfAny Method (array<Char>[]()[][], Int32)

Reports the zero-based index of the first occurrence in this instance of any character in a specified array of Unicode characters. The search starts at a specified character position.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


[TemplateAttribute]
public int IndexOfAny(
	char[] anyOf,
	int startIndex
)
<TemplateAttribute> _
Public Function IndexOfAny ( _
	anyOf As Char(), _
	startIndex As Integer _
) As Integer
[TemplateAttribute]
public:
int^ IndexOfAny(
	array<wchar_t^>^ anyOf, 
	int^ startIndex
)

Parameters

anyOf
Type: array<System..::..Char>[]()[][]
A Unicode character array containing one or more characters to seek.
startIndex
Type: System..::..Int32
The search starting position.

Return Value

The zero-based index position of the first occurrence in this instance where any character in anyOf was found; -1 if no character in anyOf was found.

Exceptions


ExceptionCondition
System..::..ArgumentNullExceptionanyOf is null.
System..::..ArgumentOutOfRangeExceptionstartIndex is negative.-or- startIndex is greater than the number of characters in this instance.