本文介绍了编程检测发布/调试模式(.NET)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

什么是编程检查当前组件是在调试编译或发布模式的最简单的方法是什么?

解决方案

 布尔isDebugMode = FALSE;
#如果调试
isDebugMode = TRUE;
#ENDIF
 

如果你想调试程序和发布版本,你应该做这样的不同的行为:

 #如果DEBUG
   INT []数据=新INT [] {1,2,3,4};
#其他
   INT []数据= GetInputData();
#ENDIF
   INT总和=数据[0];
   的for(int i = 1; I< data.Length;我++)
   {
     总和+ =数据[I]
   }
 

或者,如果你想要做某些检查的功能调试版本,你可以做到这一点是这样的:

 公众诠释总和(INT []数据)
{
   Debug.Assert的(data.Length大于0);
   INT总和=数据[0];
   的for(int i = 1; I< data.Length;我++)
   {
     总和+ =数据[I]
   }
   返回总和;
}
 

Debug.Assert的将不会被包含在发布版本。

What's the easiest way to programmatically check if the current assembly was compiled in Debug or Release mode?

解决方案
Boolean isDebugMode = false;
#if DEBUG
isDebugMode = true;
#endif

If you want to program different behavior between debug and release builds you should do it like this:

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

Or if you want to do certain checks on debug versions of functions you could do it like this:

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

The Debug.Assert will not be included in the release build.

这篇关于编程检测发布/调试模式(.NET)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-02 03:07