示例#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);
 }