Declaration:
void MyGenericMethod<T1, T2, T3>(T1 a, T2 b, T3 c)
{
// Do something with the type parameters.
}
Invocation:
There is no need to supply type arguements to a genric method, because the compiler can implicitly infer the type.
int x =10;
int y =20;
string z = "tes...