Code & Deploy
Code
Models
Repos
Sign in
@leroysheep
/
CrazyWebTemps
CrazyWebTemps
/
t
/
t4018
/
csharp-exclude-generic-method-calls
Code
Commits
Pulls
CI/CD
82,027
next
bisect
jch
maint
master
next
seen
test
todo
text
12 lines
189 Bytes
Copy permalink
Copy
Raw
1
class Example
2
{
3
string Method(int RIGHT)
4
{
5
GenericMethodCall<int, int>(
6
);
7
8
return "ChangeMe";
9
}
10
11
string GenericMethodCall<T, T2>() => "test";
12
}