C# Tangkap dua pengecualian dalam satu blok
catch (Exception ex)
{
if (ex is FormatException || ex is OverflowException)
{
WebId = Guid.Empty;
return;
}
throw;
}
DeuxAlpha