I cant wrap my head around why I cant call a method with this signature:
public void Test(Tuple<int, IEnumerable<string>> x);
like that:
Test(Tuple.Create(4, new List<string>()))
I think this has to do with co/contravariance but thats just a guess. Can somebody share his cleverness?