/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
- using System;
- using System.Collections.Generic;
- using System.Windows.Forms;
-
- namespace Otis.Sample
- {
- static class Program
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new Form1());
- }
- }
- }