Beispiel #1
0
 public static void WriteFile(this List <string> input, string filePath)
 {
     if (input.Count > 0)
     {
         IoManager.WriteWithMapper <string, StringMap>(input, filePath);
     }
 }
Beispiel #2
0
 public static List <FileWithTags> WriteFile(this IEnumerable <FileWithTags> input, string filePath)
 {
     IoManager.WriteWithoutMapper(input, filePath);
     return(input.ToList());
 }