PageRenderTime 55ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CSXmlEncryption/Program.cs

#
C# | 21 lines | 17 code | 1 blank | 3 comment | 0 complexity | c1d6d3833044d10b6b6b2fc324c2bf6f MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Windows.Forms;
  5. namespace CSXmlEncryption
  6. {
  7. static class Program
  8. {
  9. /// <summary>
  10. /// The main entry point for the application.
  11. /// </summary>
  12. [STAThread]
  13. static void Main()
  14. {
  15. Application.EnableVisualStyles();
  16. Application.SetCompatibleTextRenderingDefault(false);
  17. Application.Run(new MainForm());
  18. }
  19. }
  20. }