Exemplo n.º 1
0
 /// <summary>
 /// Extends Remove action with the ability to ignore case.
 /// </summary>
 public static RemoveValuesIgnoringCase IgnoringCase(this RemoveValues source)
 {
     return(new RemoveValuesIgnoringCase(source));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Extends Remove action with the ability to change starting point.
 /// </summary>
 /// <param name="position">
 /// Position in source string to start from. Beginning or End values could be used
 /// </param>
 /// <exception cref="ArgumentOutOfRangeException">Thrown when StartOf or EndOf position value is used</exception>
 public static RemoveValuesFrom From(this RemoveValues source, The position)
 {
     return(new RemoveValuesFrom(source, position));
 }