型別引數(方法)

宣告:

void MyGenericMethod<T1, T2, T3>(T1 a, T2 b, T3 c)
{
    // Do something with the type parameters.
}

呼叫:

沒有必要為 genric 方法提供型別爭論,因為編譯器可以隱式推斷型別。

int x =10;
int y =20;
string z = "test";
MyGenericMethod(x,y,z);

但是,如果存在歧義,則需要使用型別 arguemnts 呼叫泛型方法

MyGenericMethod<int, int, string>(x,y,z);