29 lines
788 B
C#
29 lines
788 B
C#
// Program.cs : アプリケーションのメインエントリポイント
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2023 MITSUBISHI Electric Corporation All Rights Reserved
|
|
//
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SampleAppCS
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// アプリケーションのメイン エントリ ポイントです。
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new FormSampleApp());
|
|
}
|
|
}
|
|
}
|