Definition at line 3468 of file String.cs.
3469 {
3471 {
3472 throw new ArgumentNullException("anyOf");
3473 }
3475 {
3476 return -1;
3477 }
3479 {
3480 throw new ArgumentOutOfRangeException("startIndex", SR.ArgumentOutOfRange_Index);
3481 }
3483 {
3484 throw new ArgumentOutOfRangeException("count", SR.ArgumentOutOfRange_Count);
3485 }
3486 if (
anyOf.Length > 1)
3487 {
3489 }
3490 if (
anyOf.Length == 1)
3491 {
3493 }
3494 return -1;
3495 }
int LastIndexOf(char value)
unsafe int LastIndexOfCharArray(char[] anyOf, int startIndex, int count)
References System.SR.ArgumentOutOfRange_Count, System.SR.ArgumentOutOfRange_Index, System.count, System.String.LastIndexOf(), System.String.LastIndexOfCharArray(), System.String.Length, and System.startIndex.