当前位置:  开发笔记 > 编程语言 > 正文

以编程方式检测发布/调试模式(.NET)

如何解决《以编程方式检测发布/调试模式(.NET)》经验,为你挑选了2个好方法。



1> Davy Landman..:
bool isDebugMode = false;
#if DEBUG
isDebugMode = true;
#endif

如果要在调试版本和发布版本之间编写不同的行为,您应该这样做:

#if DEBUG
   int[] data = new int[] {1, 2, 3, 4};
#else
   int[] data = GetInputData();
#endif
   int sum = data[0];
   for (int i= 1; i < data.Length; i++)
   {
     sum += data[i];
   }

或者如果你想对函数的调试版本进行某些检查,你可以这样做:

public int Sum(int[] data)
{
   Debug.Assert(data.Length > 0);
   int sum = data[0];
   for (int i= 1; i < data.Length; i++)
   {
     sum += data[i];
   }
   return sum;
}

Debug.Assert将不包含在发布版本中.



2> Jhonny D. Ca..:

我希望这对你有用:

public static bool IsRelease(Assembly assembly) {
    object[] attributes = assembly.GetCustomAttributes(typeof(DebuggableAttribute), true);
    if (attributes == null || attributes.Length == 0)
        return true;

    var d = (DebuggableAttribute)attributes[0];
    if ((d.DebuggingFlags & DebuggableAttribute.DebuggingModes.Default) == DebuggableAttribute.DebuggingModes.None)
        return true;

    return false;
}

public static bool IsDebug(Assembly assembly) {
    object[] attributes = assembly.GetCustomAttributes(typeof(DebuggableAttribute), true);
    if (attributes == null || attributes.Length == 0)
        return true;

    var d = (DebuggableAttribute)attributes[0];
    if (d.IsJITTrackingEnabled) return true;
    return false;
}


为什么两个函数都有这一行:if(attributes == null || attributes.Length == 0)return true; 这段代码有问题.我确实给它+1了,因为答案提供了一种真正的编程方式,而不是用于获得旗帜的同步方式.有时需要知道调试模式中是否将其表示为代码本身的一部分而不是编译器标志.
在一般情况下,我将@DaveB推迟到这个问题上.但是,你的问题很广泛,如果你只是想让你的代码在测试时表现不同,我发现这个测试很有用(在VB.Net中)`如果System.Diagnostics.Debugger.IsAttached那么DoSomething'(如表格表现不同)`
如果在“发布”模式下进行编译并将DebugOutput选择为“ none”以外的任何内容,则将出现DebuggableAttribute。因此,此答案不正确。它甚至不寻找JIT Optimization标志。请参阅我的文章,了解如何手动和以编程方式区分两者-http://dave-black.blogspot.com/2011/12/how-to-tell-if-assembly-is-debug-or.html
推荐阅读
360691894_8a5c48
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有