Hello,
Question from beginner, can't find "is not" operator in C#. For example I have code below which do not work, I need to check is err not from class ThreadAbortException.
catch (Exception err)
{
if (err is not ThreadAbortException)
{
}
}
Regards, Tomas