1 2 3 4 5 6 7 8 9 10 11 12
class Example { string Method(int RIGHT) { GenericMethodCall<int, int>( ); return "ChangeMe"; } string GenericMethodCall<T, T2>() => "test"; }