⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clscommon.cs

📁 原创: 外挂网站刷IP程序的源码 自动ADSL拨号刷新IP,可录制鼠标模拟点击自动点击操作,统计点击数,自动清除COOKIES记录
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Security.Cryptography;
using System.Data;
using System.Text.RegularExpressions;
using System.Diagnostics;


namespace qdog
{
    class clsCommon
    {

        public static string RunPath()
        {
            return RunPath(false);
        }

        public static string RunPath(Boolean bWithCommand)
        {
            string strPath  = "";
            strPath= Process.GetCurrentProcess().MainModule.FileName;
            strPath = Path.GetDirectoryName(strPath);
            //strPath = System.IO.Path.GetDirectoryName( System.Reflection.Assembly.GetExecutingAssembly.Location);

            //if (bWithCommand)
            //{
            //    if (command() != "")
            //    {
            //        if (Directory.Exists(Command()))
            //        {
            //            strPath = Command();
            //        }
            //    }
            //}
            return strPath;
        }

        
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -