C#: No casting within Generics? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T09:00:35Zhttp://stackoverflow.com/feeds/question/765398http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/765398/c-no-casting-within-generics2C#: No casting within Generics?Felix Alcala2009-04-19T13:18:00Z2009-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<object> list = new List<object>();
list.Add("I can add a string since string : object");
}
static void ThisDoesNotWork()
{
// throws an invalid cast exception
IList<object> list = (IList<object>) new List<string>();
list.Add("I'm never getting here ... why?");
}
</code></pre>
http://stackoverflow.com/questions/765398/c-no-casting-within-generics/765405#7654055Answer by Mehrdad Afshari for C#: No casting within Generics?Mehrdad Afshari2009-04-19T13:25:12Z2009-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<object>().ToList();
</code></pre>
http://stackoverflow.com/questions/765398/c-no-casting-within-generics/765412#7654121Answer by Nir for C#: No casting within Generics?Nir2009-04-19T13:27:27Z2009-04-19T13:31:59Z<p><code>string</code> inherits from <code>object</code> but <code>IList<string></code> does not inherit from <code>IList<object></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<object> list = new List<string>(); // this doesn't compile
list.Add(5); // because this is perfectly valid on IList<object> but not on IList<string>
</code></pre>
http://stackoverflow.com/questions/765398/c-no-casting-within-generics/765414#7654142Answer by Pontus Gagge for C#: No casting within Generics?Pontus Gagge2009-04-19T13:28:58Z2009-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<string></code> has stronger constraints than a <code>List<object></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#7654513Answer by Frederick for C#: No casting within Generics?Frederick2009-04-19T13:58:11Z2009-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>