-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
43 lines (39 loc) · 1.39 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WaitAMoment
{
static class Program
{
/// <summary>
/// アプリケーションのメイン エントリ ポイントです。
/// </summary>
[STAThread]
static void Main()
{
var args = System.Environment.GetCommandLineArgs();
if (args.Length < 2)
{
System.Environment.Exit(1);
return;
}
if ( args.Length >= 2 && args[1] != "/C")
{
var myAssembly = System.Reflection.Assembly.GetEntryAssembly();
string myExePath = myAssembly.Location;
var processInfo = new System.Diagnostics.ProcessStartInfo();
processInfo.UseShellExecute = true;
processInfo.Arguments = "/C \"" + args[1] + "\"";
processInfo.FileName = myExePath;
System.Diagnostics.Process.Start(processInfo);
System.Environment.Exit(0);
return;
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1( System.IO.Path.GetFileNameWithoutExtension(args[2])));
}
}
}