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