PageRenderTime 39ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CSFTPDownload/Program.cs

#
C# | 19 lines | 15 code | 1 blank | 3 comment | 0 complexity | 497c8d54144edcfdbeff112bb0b581a2 MD5 | raw file
  1. using System;
  2. using System.Windows.Forms;
  3. namespace CSFTPDownload
  4. {
  5. static class Program
  6. {
  7. /// <summary>
  8. /// The main entry point for the application.
  9. /// </summary>
  10. [STAThread]
  11. static void Main()
  12. {
  13. Application.EnableVisualStyles();
  14. Application.SetCompatibleTextRenderingDefault(false);
  15. Application.Run(new MainForm());
  16. }
  17. }
  18. }