Toasts – Blame information for rev 8

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Windows.Forms;
3  
4 namespace Test
5 {
6 internal static class Program
7 {
8 #region Private Methods
9  
10 /// <summary>
11 /// The main entry point for the application.
12 /// </summary>
13 [STAThread]
14 private static void Main()
15 {
16 Application.EnableVisualStyles();
17 Application.SetCompatibleTextRenderingDefault(false);
8 office 18 Application.Run(new TestForm());
1 office 19 }
20  
21 #endregion
22 }
23 }