Example #1
0
 /// <summary>
 /// Concats all strings into a single string
 /// </summary>
 /// <param name="strings">Strings to concat together</param>
 /// <param name="deliminator">Deliminator between the string values</param>
 /// <returns>Composed string</returns>
 /// <exception cref="System.ArgumentNullException">Thrown when <paramref name="strings"/> is null</exception>
 public static string ConcatAll(this IEnumerable <string> strings, char deliminator)
 {
     return(strings.ConcatAll(deliminator.ToString()));
 }