Click or drag to resize

IStringJavaObjectLastIndexOf(String) Method

Reports the zero-based index position of the last occurrence of a specified string within this instance.

Namespace: MASES.JCOBridge.C2JBridge.JVMInterop
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntax
int LastIndexOf(
	string value
)

Parameters

value  String
The string to seek.

Return Value

Int32
The zero-based starting index position of value if that string is found, or -1 if it is not. If value is Empty, the return value is the last index position in this instance.
Exceptions
ExceptionCondition
InvalidOperationExceptionIf current instance is not a JVM string
ArgumentNullExceptionvalue is null.
See Also