Answers for "multiple exception 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

C# Answers by Framework

Browse Popular Code Answers by Language