mirror of
https://bitbucket.org/FuketsuBaka/clearcache1c.git
synced 2024-11-01 04:06:53 +00:00
23 lines
540 B
C#
23 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ClearCache1C
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// Главная точка входа для приложения.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new FormMain());
|
|
}
|
|
}
|
|
}
|