7 references to LastIndexOf
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.cs (5)
1141return LastIndexOf(source, new ReadOnlySpan<char>(in value), options); 1155return LastIndexOf(source.AsSpan(), value.AsSpan(), options); 1236int retVal = LastIndexOf(sourceSpan, new ReadOnlySpan<char>(in value), options); 1296int retVal = LastIndexOf(sourceSpan, value, options); 1410return LastIndexOf(source, valueAsUtf16.Slice(0, charCount), options);
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.Globalization.cs (2)
175return CultureInfo.CurrentCulture.CompareInfo.LastIndexOf(span, value, string.GetCaseCompareOfComparisonCulture(comparisonType)); 179return CompareInfo.Invariant.LastIndexOf(span, value, string.GetCaseCompareOfComparisonCulture(comparisonType));