8 references to Both
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (6)
2683return TrimWhiteSpaceHelper(TrimType.Both); 2693return TrimHelper(&trimChar, 1, TrimType.Both); 2735return TrimWhiteSpaceHelper(TrimType.Both); 2739return TrimHelper(pTrimChars, trimChars.Length, TrimType.Both); 2756return TrimWhiteSpaceHelper(TrimType.Both); 2761return TrimHelper(pTrimChars, trimChars.Length, TrimType.Both);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Trimming.cs (2)
15public static Range Trim(ReadOnlySpan<byte> value) => TrimHelper(value, TrimType.Both); 18public static Range Trim(ReadOnlySpan<char> value) => TrimHelper(value, TrimType.Both);