Property | Value |
---|---|
Id | RCS1236 |
Category | Usage |
Severity | Info |
Minimal Language Version | 6.0 |
try
{
}
catch (Exception ex)
{
if (!(ex is InvalidOperationException)) // RCS1236
{
throw;
}
return;
}
try
{
}
catch (Exception ex) when (ex is InvalidOperationException)
{
return;
}
(Generated with DotMarkdown)