-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
35 lines (33 loc) · 1008 Bytes
/
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
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Forms.VisualStyles;
namespace KeyInputMacro
{
internal static class Program
{
public const string version = "1.1.1.20241102";
internal static string[]? programArgs;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
programArgs = args;
#if DEBUG
{
string all="³ÌÐòÆô¶¯²ÎÊý: ";
foreach (string arg in args)
{
all += arg+" ";
}
Logger.LogAdd(all);
}
#endif
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Main());
}
}
}