Bridge

String..::..LastIndexOfAny Method (array<Char>[]()[][])

Reports the zero-based index position of the last occurrence in this instance of one or more characters specified in a Unicode array.

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

Syntax


[TemplateAttribute]
public int LastIndexOfAny(
	params char[] ch
)
<TemplateAttribute> _
Public Function LastIndexOfAny ( _
	ParamArray ch As Char() _
) As Integer
[TemplateAttribute]
public:
int^ LastIndexOfAny(
	... array<wchar_t^>^ ch
)

Parameters

ch
Type: array<System..::..Char>[]()[][]

Return Value

The index position of the last 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.