Utilies.cs 239 B

123456789
  1. using System.Collections.Generic;
  2. namespace RamDavisk.Ramfs.Inters
  3. {
  4. internal static class Utilies
  5. {
  6. public static string JoinString(this IEnumerable<string> source, string sep = "") => string.Join(sep, source);
  7. }
  8. }