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