What is the best way in c# to determine whether the programmer is running the program via IDE or it's user?

c#中确定程序员是通过IDE或其用户运行程序的最佳方式是什么?


if (System.Diagnostics.Debugger.IsAttached) {
    // You are debugging
}

public static bool IsInVisualStudio
{
    get
    {
        bool inIDE = false;
        string[] args = System.Environment.GetCommandLineArgs();
        if (args != null && args.Length > 0)
        {
            string prgName = args[0].ToUpper();
            inIDE = prgName.EndsWith("VSHOST.EXE");
        }
        return inIDE;
    }
}
链接地址: http://www.djcxy.com/p/34882.html

上一篇: Android中设置全局未捕获的异常处理程序的理想方法

下一篇: 在c#中确定程序员是通过IDE还是用户运行程序的最佳方式是什么?