C # attraper deux exceptions dans un bloc
catch (Exception ex)
{
if (ex is FormatException || ex is OverflowException)
{
WebId = Guid.Empty;
return;
}
throw;
}
DeuxAlpha