Newer
Older
DungeonShooting / DungeonShooting_ExcelTool / Program.cs
  1.  
  2. public class Program
  3. {
  4. public static void Main(string[] args)
  5. {
  6. Console.WriteLine("准备导出excel表...");
  7. if (ExcelGenerator.ExportExcel())
  8. {
  9. Console.WriteLine("excel表导出成功!");
  10. }
  11. else
  12. {
  13. Console.WriteLine("excel表导出失败!");
  14. }
  15. }
  16. }