Type Parameters (Methods) C# with Example



Type Parameters (Methods) C# with Example

Declaration: 
void MyGenericMethod(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 = "test"; 
MyGenericMethod(x,y,z); 
However, if there is an ambiguity, generic methods need to be called with type arguemnts as 
MyGenericMethod(x,y,z); 

0 Comment's

Comment Form