8 references to Both
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (6)
2334
return TrimWhiteSpaceHelper(TrimType.
Both
);
2344
return TrimHelper(&trimChar, 1, TrimType.
Both
);
2352
return TrimWhiteSpaceHelper(TrimType.
Both
);
2356
return TrimHelper(pTrimChars, trimChars.Length, TrimType.
Both
);
2373
return TrimWhiteSpaceHelper(TrimType.
Both
);
2378
return TrimHelper(pTrimChars, trimChars.Length, TrimType.
Both
);
src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Trimming.cs (2)
15
public static Range Trim(ReadOnlySpan<byte> value) => TrimHelper(value, TrimType.
Both
);
18
public static Range Trim(ReadOnlySpan<char> value) => TrimHelper(value, TrimType.
Both
);