You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Checks whether the specified name starts with a prefix, optionally trims a separator character following the prefix and returns the remainder.
6199
+
/// </summary>
6200
+
/// <param name="name">The name to strip.</param>
6201
+
/// <param name="prefix">The prefix to strip from <paramref name="name"/>.</param>
6202
+
/// <param name="trimChar">Additional separator that may follow <paramref name="prefix"/> which should also be trimmed away.</param>
6203
+
/// <returns>
6204
+
/// <paramref name="name"/> if it does not start with <paramref name="prefix"/>;
6205
+
/// otherwise,
6206
+
/// the remainder of <paramref name="name"/> after stripping <paramref name="prefix"/> and all immediate following occurences of <paramref name="trimChar"/> from it beginning.
0 commit comments