Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | freddie | 1 | /* |
2 | * Created by SharpDevelop. |
||
3 | * User: 06pfjn |
||
4 | * Date: 30/06/2010 |
||
5 | * Time: 12:15 |
||
6 | * |
||
7 | * To change this template use Tools | Options | Coding | Edit Standard Headers. |
||
8 | */ |
||
9 | using System; |
||
10 | using System.Windows.Forms; |
||
11 | |||
12 | namespace LassyPad |
||
13 | { |
||
14 | /// <summary> |
||
15 | /// Class with program entry point. |
||
16 | /// </summary> |
||
17 | internal sealed class Program |
||
18 | { |
||
19 | /// <summary> |
||
20 | /// Program entry point. |
||
21 | /// </summary> |
||
22 | [STAThread] |
||
23 | private static void Main(string[] args) |
||
24 | { |
||
25 | Application.EnableVisualStyles(); |
||
26 | Application.SetCompatibleTextRenderingDefault(false); |
||
27 | Application.Run(new MainForm()); |
||
28 | } |
||
29 | |||
30 | } |
||
31 | } |