Search Results

5
votes

Migrate from vs 2005 to vs 2008

There is some good discussion on this topic on another thread and …
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 …