?? 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 + -