blob: b1e64256cfe45581dac2a9409bb4221774e584ef [file] [log] [blame]
using System;
class Example
{
string Method(int RIGHT)
{
try
{
throw new Exception("fail");
}
catch (Exception)
{
}
finally
{
}
try { } catch (Exception) {}
try
{
throw GetException(
);
}
catch (Exception) { }
return "ChangeMe";
}
Exception GetException() => new Exception("fail");
}