LastIndexOfAny Method (Char[], Int32, Int32)
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Reports the zero-based index position of the last occurrence in this instance of one or more characters specified in a Unicode array. The search starts at a specified character position and proceeds backward toward the beginning of the string for a specified number of character positions.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Function LastIndexOfAny ( _
anyOf As Char(), _
startIndex As Integer, _
count As Integer _
) As Integer
public int LastIndexOfAny(
char[] anyOf,
int startIndex,
int count
)
public:
int LastIndexOfAny(
array<wchar_t>^ anyOf,
int startIndex,
int count
)
member LastIndexOfAny :
anyOf:char[] *
startIndex:int *
count:int -> int
public function LastIndexOfAny(
anyOf : char[],
startIndex : int,
count : int
) : int
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. The search proceeds from startIndex toward the beginning of this instance.
- count
Type: System. . :: . .Int32
The number of character positions to examine.
Return Value
Type: System. . :: . .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 or if the current instance equals String..::..Empty.
Remarks
Index numbering starts from zero.
This method begins searching at the startIndex character position of this instance and proceeds backward toward the beginning until either a character in anyOf is found or count character positions have been examined. The search is case-sensitive.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.