Answers for "catch multiple types of exception in c#"

C#
0

two exceptions same catch c#

try
{
// Code
}
catch (Exception ex) when (ex is ArbitraryType1 || ex is ArbitraryType2)
{
  throw;
}
Posted by: Guest on September-27-2020
0

c# catch two exceptions in one block

catch (Exception ex)            
{                
    if (ex is FormatException || ex is OverflowException)
    {
        WebId = Guid.Empty;
        return;
    }

    throw;
}
Posted by: Guest on January-23-2020

C# Answers by Framework

Browse Popular Code Answers by Language