초기 커밋.

This commit is contained in:
2025-06-28 22:14:18 +09:00
parent 40dc2254d5
commit ab7a315b04
18 changed files with 1936 additions and 0 deletions

22
BokBonCheck/Program.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace BokBonCheck
{
internal static class Program
{
/// <summary>
/// 해당 애플리케이션의 주 진입점입니다.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}