/src/Otis.Sample/Program.cs

http://otis-lib.googlecode.com/ · C# · 20 lines · 16 code · 1 blank · 3 comment · 0 complexity · 71aae6184a4e220a89493dd87f7d4044 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Windows.Forms;
  4. namespace Otis.Sample
  5. {
  6. static class Program
  7. {
  8. /// <summary>
  9. /// The main entry point for the application.
  10. /// </summary>
  11. [STAThread]
  12. static void Main()
  13. {
  14. Application.EnableVisualStyles();
  15. Application.SetCompatibleTextRenderingDefault(false);
  16. Application.Run(new Form1());
  17. }
  18. }
  19. }