1
0
mirror of https://github.com/rudollee/TheLoopCodingTest.git synced 2025-06-07 16:06:09 +00:00
2018-05-03 03:45:23 +09:00

23 lines
444 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace UnicodeAndPermutation
{
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());
}
}
}