Code & Deploy
Code
Models
Repos
Sign in
@matheusbsbs
/
matheus-bagliano
matheus-bagliano
/
t
/
t4018
/
csharp-exclude-method-calls
Code
Commits
Pulls
CI/CD
82,037
test
bisect
jch
maint
master
next
seen
test
todo
text
20 lines
353 Bytes
Copy permalink
Copy
Raw
1
class Example
2
{
3
string Method(int RIGHT)
4
{
5
MethodCall();
6
MethodCall(1, 2);
7
MethodCall(
8
1, 2);
9
MethodCall(
10
1, 2,
11
3);
12
MethodCall(
13
1, MethodCall(),
14
2);
15
16
return "ChangeMe";
17
}
18
19
int MethodCall(int a = 0, int b = 0, int c = 0) => 42;
20
}