This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Functions/W32.Test/Program.cs

19 lines
462 B
C#
Raw Normal View History

2020-05-25 19:32:53 +02:00
using System;
using System.Windows.Forms;
namespace CC_Functions.W32.Test
2019-09-07 10:12:24 +02:00
{
2019-11-29 21:27:24 +01:00
internal static class Program
2019-09-07 10:12:24 +02:00
{
/// <summary>
/// The main entry point for the application.
2019-09-07 10:12:24 +02:00
/// </summary>
[STAThread]
2019-11-29 21:27:24 +01:00
private static void Main()
2019-09-07 10:12:24 +02:00
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2020-01-15 20:41:52 +01:00
Application.Run(new MainForm());
2019-09-07 10:12:24 +02:00
}
}
2019-11-29 21:27:24 +01:00
}