/Visual Studio 2008/CSXmlEncryption/Program.cs
C# | 21 lines | 17 code | 1 blank | 3 comment | 0 complexity | c1d6d3833044d10b6b6b2fc324c2bf6f MD5 | raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Windows.Forms;
-
- namespace CSXmlEncryption
- {
- static class Program
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new MainForm());
- }
- }
- }