program.cs

来自「指纹识别程序」· CS 代码 · 共 55 行

CS
55
字号
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 + =
减小字号Ctrl + -
显示快捷键?