Exemplo n.º 1
0
 /// <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);
Exemplo n.º 2
0
 /// <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);