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

时间:2010-01-05 07:42:19

标签: c# winforms

确定程序员是通过IDE还是其用户运行程序的最佳方法是什么?

2 个答案:

答案 0 :(得分:34)

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

答案 1 :(得分:7)

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;
    }
}