Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientManagement/HeuristicLab.Services.Authentication/UserInterface/Program.cs @ 4695

Last change on this file since 4695 was 4695, checked in by fruehrli, 14 years ago

#1197
commit completed

File size: 518 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Windows.Forms;
5
6
7
8namespace HeuristicLab.Services.Authentication.UserInterface {
9  static class Program {
10    /// <summary>
11    /// The main entry point for the application.
12    /// </summary>
13    [STAThread]
14    static void Main() {
15      Application.EnableVisualStyles();
16      Application.SetCompatibleTextRenderingDefault(false);
17      //Form1 f1 = new Form1();
18      Application.Run(new Form1());
19    }
20  }
21}
Note: See TracBrowser for help on using the repository browser.