/// <summary> /// Checks if the string ends with the text provided. /// </summary> /// <param name="text">The text to check.</param> /// <returns>True if so, false otherwise.</returns> public bool EndsWith(UpperString text) => EndsWith(text.str);
/// <summary> /// Checks if the string starts with the text provided. /// </summary> /// <param name="text">The text to check.</param> /// <returns>True if so, false otherwise.</returns> public bool StartsWith(UpperString text) => StartsWith(text.str);