📜  c# 一次捕获多个异常 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:04.537000             🧑  作者: Mango

代码示例1
catch (Exception ex)            
{                
    if (ex is FormatException or OverflowException) // Chain as many or xException as you need
    {
        WebId = Guid.Empty;
        return;
    }
    
    throw;
}