30 lines
459 B
Plaintext
30 lines
459 B
Plaintext
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");
|
|
}
|