If you are looking for the general type of collection closest to the array, then you will probably need it List<T>. But this is not the same.
, : , , . . T[].
, :
void SomeFunction(int[] x)
:
void SomeFunction<T>(T[] x)
int :
SomeFunction<int>(myIntArray)