C#: No casting within Generics? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T09:00:35Z http://stackoverflow.com/feeds/question/765398 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/765398/c-no-casting-within-generics 2 C#: No casting within Generics? Felix Alcala 2009-04-19T13:18:00Z 2009-04-19T13:58:11Z <p>While I can upcast a string to an object, I cannot upcast an IList of strings to an IList of objects. How come? What to do now other that coping all items to a new IList?</p> <pre><code>static void ThisWorks() { IList&lt;object&gt; list = new List&lt;object&gt;(); list.Add("I can add a string since string : object"); } static void ThisDoesNotWork() { // throws an invalid cast exception IList&lt;object&gt; list = (IList&lt;object&gt;) new List&lt;string&gt;(); list.Add("I'm never getting here ... why?"); } </code></pre> http://stackoverflow.com/questions/765398/c-no-casting-within-generics/765405#765405 5 Answer by Mehrdad Afshari for C#: No casting within Generics? Mehrdad Afshari 2009-04-19T13:25:12Z 2009-04-19T13:25:12Z <p>This is not possible as generics are invariant (as of C# 3.0).</p> <p>You can workaround it with:</p> <pre><code>var objectList = list.Cast&lt;object&gt;().ToList(); </code></pre> http://stackoverflow.com/questions/765398/c-no-casting-within-generics/765412#765412 1 Answer by Nir for C#: No casting within Generics? Nir 2009-04-19T13:27:27Z 2009-04-19T13:31:59Z <p><code>string</code> inherits from <code>object</code> but <code>IList&lt;string&gt;</code> does not inherit from <code>IList&lt;object&gt;</code> they are unrelated types and therefor you can't cast between them.</p> <p>Just think what would happen if this worked:</p> <pre><code>// THIS CODE DOES NOT WORK IList&lt;object&gt; list = new List&lt;string&gt;(); // this doesn't compile list.Add(5); // because this is perfectly valid on IList&lt;object&gt; but not on IList&lt;string&gt; </code></pre> http://stackoverflow.com/questions/765398/c-no-casting-within-generics/765414#765414 2 Answer by Pontus Gagge for C#: No casting within Generics? Pontus Gagge 2009-04-19T13:28:58Z 2009-04-19T13:43:56Z <p>Look at it like this: while a banana is a fruit, a basket of bananas is not a basket of fruit, since you can add oranges to the latter, but not the former. Your <code>List&lt;string&gt;</code> has stronger constraints than a <code>List&lt;object&gt;</code>.</p> <p>Casting should always respect <a href="http://en.wikipedia.org/wiki/Liskov%5Fsubstitution%5Fprinciple" rel="nofollow">Liskow</a>. For containers and iterators which do not admit modification, such casting is safe, but once things can be changed, you are skating close to the thin ice.</p> http://stackoverflow.com/questions/765398/c-no-casting-within-generics/765451#765451 3 Answer by Frederick for C#: No casting within Generics? Frederick 2009-04-19T13:58:11Z 2009-04-19T13:58:11Z <p>What you asked is essentially a question of <strong>Contravariance and Covariance</strong>. It is a concept in programming language design which talks about how methods and collections behave with respect to objects of two classes in the same inheritance hierarchy. Reading the <a href="http://en.wikipedia.org/wiki/Covariance%5Fand%5Fcontravariance%5F%28computer%5Fscience%29" rel="nofollow">Wikipedia article</a> may help place your above curiosity in a larger, more general perspective.</p>