假设我只想在使用调试模式时抛出异常,我做了:
try
{
throw new Exception("test)";
}
catch(Exception ex)
#if DEBUG
throw;
#else
Console.WriteLine("exception => " + ex.Message);
#endif
这仅适用于throw,在我得到的其他条件下:
变量 ex 已声明但从未使用
阿晨1998
相关分类