📜  c# try catch multiple catchs - C# 代码示例
📅  最后修改于: 2022-03-11 14:49:12.940000             🧑  作者: Mango
代码示例2
catch (Exception ex)
{
if (ex is FormatException || ex is OverflowException)
{
WebId = Guid.Empty;
return;
}
throw;
}