/cribzlock/Program.cs
http://github.com/chtombleson/cribz-lock-C- · C# · 21 lines · 17 code · 1 blank · 3 comment · 0 complexity · 9090c1f7e20c2cb697273c15c3a4c468 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Windows.Forms;
- namespace cribzlock
- {
- 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());
- }
- }
- }