Skip to content
Snippets Groups Projects
Select Git revision
  • 6b5e684c77e5fa855b609d01e9a07fec296e9257
  • 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
    Add svn:eol-style property to source files, so that the line endings are correctly converted to the target system's native end of line style.
    071e02c6
    History
    Program.cs 482 B
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Windows.Forms;
    
    namespace LEDMixer
    {
        static class Program
        {
            /// <summary>
            /// The main entry point for the application.
            /// </summary>
            [STAThread]
            static void Main()
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Application.Run(new LEDMixer());
            }
        }
    }