Exemplo n.º 1
0
 public static IEnumerable <string[]> Read(
     string filepath)
 {
     return(XsvConverter.Read(filepath, encoding, delimiters));
 }
Exemplo n.º 2
0
 public static void Write(
     IEnumerable <string[]> rows,
     string filepath)
 {
     XsvConverter.Write(rows, filepath, encoding, delimiters, enclosure);
 }