src\runtime\src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (9)
2693return TrimHelper(&trimChar, 1, TrimType.Both);
2739return TrimHelper(pTrimChars, trimChars.Length, TrimType.Both);
2761return TrimHelper(pTrimChars, trimChars.Length, TrimType.Both);
2769public unsafe string TrimStart(char trimChar) => TrimHelper(&trimChar, 1, TrimType.Head);
2806return TrimHelper(pTrimChars, trimChars.Length, TrimType.Head);
2828return TrimHelper(pTrimChars, trimChars.Length, TrimType.Head);
2836public unsafe string TrimEnd(char trimChar) => TrimHelper(&trimChar, 1, TrimType.Tail);
2873return TrimHelper(pTrimChars, trimChars.Length, TrimType.Tail);
2895return TrimHelper(pTrimChars, trimChars.Length, TrimType.Tail);