Start() public method

public Start ( ) : void
return void
コード例 #1
0
ファイル: Program.cs プロジェクト: aganonki/HackTools
        static void Main(string[] args)
        {
            try
            {
                AllocConsole();
                Console.WriteLine("Main funct!");
                var csgoProcess = new CSGOProcess();
                csgoProcess.Load();

                //var uithread = new Thread(start);
                //uithread.Start();
                csgoProcess.Start();
                start();
            }
            catch (Exception e)
            {
                Console.WriteLine( e);
            }

            Thread.Sleep(Timeout.Infinite);
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: zzfeed/HackTools
        static void Main(string[] args)
        {
            try
            {
                AllocConsole();
                Console.WriteLine("Main funct!");
                var csgoProcess = new CSGOProcess();
                csgoProcess.Load();

                //var uithread = new Thread(start);
                //uithread.Start();
                csgoProcess.Start();
                start();
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
            }

            Thread.Sleep(Timeout.Infinite);
        }