Advertisement
jotto

Program.cs

Feb 13th, 2015
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.89 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Windows.Forms;
  5.  
  6. namespace Notes
  7. {
  8.     /// <summary>
  9.     /// After you log in, this programs can save your personal notes
  10.     /// to a new file or if a file is already created,
  11.     /// it will add notes beneath old ones.
  12.     ///
  13.     /// <list type=" type="bullet">
  14.     ///
  15.     /// <item>
  16.     /// <term>Author</term>
  17.     /// <description>Marek Czaplicki</description>
  18.     /// </item>
  19.     ///
  20.     /// </list>
  21.     ///
  22.     /// </summary>
  23.     static class Program
  24.     {
  25.         [STAThread]
  26.         /// <summary>
  27.         /// The main entry point for the application.
  28.         /// </summary>
  29.         static void Main()
  30.         {
  31.             Application.EnableVisualStyles();
  32.             Application.SetCompatibleTextRenderingDefault(false);
  33.             Application.Run(new Notes());
  34.         }
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement