Click or drag to resize

IStringJavaObjectLastIndexOfAny Method

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

Namespace: MASES.JCOBridge.C2JBridge.JVMInterop
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntax
int LastIndexOfAny(
	char[] anyOf
)

Parameters

anyOf  Char
A Unicode character array containing one or more characters to seek.

Return Value

Int32
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
InvalidOperationExceptionIf current instance is not a JVM string
ArgumentNullExceptionanyOf is null.
See Also