Rev | Line | |
---|
[4695] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Windows.Forms;
|
---|
| 5 |
|
---|
| 6 |
|
---|
| 7 |
|
---|
| 8 | namespace 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.