我想在下一次捕获时抛出异常,(我附上了图片)
有人知道怎么做吗?
C# 6.0
救援!
try
{
}
catch (Exception ex) when (tried < 5)
{
}
你不能,并且试图这样做表明你的catch
块中有太多的逻辑,或者你应该重构你的方法只做一件事。如果你不能重新设计它,你将不得不嵌套你的try
块:
try
{
try
{
...
}
catch (Advantage.Data.Provider.AdsException)
{
if (...)
{
throw; // Throws to the *containing* catch block
}
}
}
catch (Exception e)
{
...
}
一种可能性是嵌套 try/catch 子句:
try
{
try
{
/* ... */
}
catch(Advantage.Data.Provider.AdsException ex)
{
/* specific handling */
throw;
}
}
catch(Exception ex)
{
/* common handling */
}
还有另一种方法 - 仅使用您的一般 catch 语句并自己检查异常类型:
try
{
/* ... */
}
catch(Exception ex)
{
if(ex is Advantage.Data.Provider.AdsException)
{
/* specific handling */
}
/* common handling */
}
这个答案的灵感来自Honza Brestan 的回答:
}
catch (Exception e)
{
bool isAdsExc = e is Advantage.Data.Provider.AdsException;
if (isAdsExc)
{
tried++;
System.Threading.Thread.Sleep(1000);
}
if (tried > 5 || !isAdsExc)
{
txn.Rollback();
log.Error(" ...
...
}
}
finally
{
try
将两个块相互嵌套在一起很丑。
如果您需要使用 的属性AdsException
,请使用强制转换as
而不是is
.