Search Results

0
votes

In C#, why can’t a List<string> object be stored in a List<object> variable

Here is another pre-.NET 3.5 solution for any IList whose contents can be cast implicitly. public IList<B> ConvertIList<D, B>(IList<D> list) where D : B { List …