/dotnet/Program.cs
http://sigma-h.googlecode.com/ · C# · 21 lines · 17 code · 1 blank · 3 comment · 0 complexity · 6ef8598794d694593ae152b91d0e54a9 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Windows.Forms;
-
- namespace ActivityInfo
- {
- static class Program
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new DatabaseForm());
- }
- }
- }