Skip to content
Snippets Groups Projects
Select Git revision
  • 12abb59b19f09c83647b1b4a6f509de5b0f6cc0e
  • master default protected
  • LUFA-170418
  • LUFA-151115
  • LUFA-140928
  • LUFA-140302
  • LUFA-130901
  • LUFA-130901-BETA
  • LUFA-130303
  • LUFA-120730
  • LUFA-120730-BETA
  • LUFA-120219
  • LUFA-120219-BETA
  • LUFA-111009
  • LUFA-111009-BETA
  • LUFA-110528
  • LUFA-110528-BETA
17 results

Program.cs

Blame
  • user avatar
    Dean Camera authored
    47384e3c
    History
    Program.cs 491 B
    using System;
    using System.Collections.Generic;
    using System.Windows.Forms;
    
    namespace TestWinForms
    {
        static class Program
        {
            /// <summary>
            /// The main entry point for the application.
            /// </summary>
            [STAThread]
            static void Main()
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Application.Run(new MailNotifier());
            }
        }
    }