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