2 references to IndexOf
Microsoft.Extensions.Primitives (2)
StringSegment.cs (2)
490public int IndexOf(char c, int start) => IndexOf(c, start, Length - start); 497public int IndexOf(char c) => IndexOf(c, 0, Length);