src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (9)
2401return TrimHelper(&trimChar, 1, TrimType.Both);
2458return TrimHelper(pTrimChars, trimChars.Length, TrimType.Both);
2480return TrimHelper(pTrimChars, trimChars.Length, TrimType.Both);
2488public unsafe string TrimStart(char trimChar) => TrimHelper(&trimChar, 1, TrimType.Head);
2532return TrimHelper(pTrimChars, trimChars.Length, TrimType.Head);
2554return TrimHelper(pTrimChars, trimChars.Length, TrimType.Head);
2562public unsafe string TrimEnd(char trimChar) => TrimHelper(&trimChar, 1, TrimType.Tail);
2606return TrimHelper(pTrimChars, trimChars.Length, TrimType.Tail);
2628return TrimHelper(pTrimChars, trimChars.Length, TrimType.Tail);