📄 program.cs
字号:
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace Fingerprint
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
//if (args.Length > 0)
//{
// //Console.WriteLine("{0} command line arguments were specified", args.Length);
// foreach (string arg in args)
// {
// Console.WriteLine(arg);
// //int ii = arg.IndexOf("/s:");
// //InString.Split(" ".ToCharArray());
// string[] ByteStrings = arg.Split("/s:".ToCharArray());
// APP.Add(int.Parse(ByteStrings[3]));
// MessageBox.Show(ByteStrings[3]);
// }
// // APP.Add(
//}
//else
//{
// CHK chk = new CHK();
//MessageBox.Show(chk.GetCHK("2C 00 00 00 00"));
// MessageBox.Show(chk.GetCHK("2D 00 00 01 00"));
// MessageBox.Show(chk.GetCHK("01 00 01 01 00"));
// MessageBox.Show(chk.GetCHK("02 00 01 01 00"));
// MessageBox.Show(chk.GetCHK("03 00 01 01 00"));
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormMin());
// Application.Run(new FormScript());
//}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -