Exemplo n.º 1
0
 public static string Combine(this string Base, params string[] Others)
 {
     return(Others.Aggregate((a, b) => a + Base + b));
 }