That\'s a pretty elementary question, but I have never delved into generics before and I found myself in the need to use it. Unfortunately I don\'t have the time right now to go
You need to add the generic type parameter for T to your method:
T
void MyMethod(List list) {
The compiler doesn't know what T represents, otherwise.