SoftwareEngineering2/WindowsFormsAppCache/WindowsFormsAppCache/Program.cs

29 lines
571 B
C#
Raw Permalink Normal View History

2019-05-04 10:11:59 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
2019-05-04 11:07:41 +02:00
using System.Security.AccessControl;
2019-05-04 10:11:59 +02:00
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsAppCache
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
2019-05-04 11:07:41 +02:00
2019-05-04 10:11:59 +02:00
}
}