summaryrefslogtreecommitdiff
path: root/t/t4018/csharp-exclude-exceptions
blob: b1e64256cfe45581dac2a9409bb4221774e584ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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");
}