Exemplo n.º 1
0
 public static void ToTxtFile(this IList list, string fullFileName, bool showColumnName = false)
 {
     TxtHelper.ObjectListToTxt(fullFileName, list, showColumnName);
 }
Exemplo n.º 2
0
 public static void ToTxtFile(this DataTable table, string fullFileName, bool showColumnName = false)
 {
     TxtHelper.DataTableToTxt(fullFileName, table, showColumnName);
 }