using System.Collections.Generic; namespace RamDavisk.Ramfs.Inters { internal static class Utilies { public static string JoinString(this IEnumerable<string> source, string sep = "") => string.Join(sep, source); } }