List Generics and Casting - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T12:53:27Zhttp://stackoverflow.com/feeds/question/357396http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/357396/list-generics-and-casting0List Generics and CastingMichael G2008-12-10T20:01:30Z2008-12-10T20:22:24Z
<p>Hello everyone.</p>
<p>I have two classes: Media and Container.</p>
<p>I have two lists <code>List<Media></code> and <code>List<Container></code></p>
<p>I'm passing these lists to another function (one at a time);</p>
<p>it can be one or another; </p>
<p>what's the proper way to check for the "template" type of the list so i can call an asssociated method depending on the list type?</p>
<p>or should i just try casting to the List<> and put Try/Catch blocks around it ?</p>
<pre><code> Object tagObj = mediaFlow1.BackButton.Tag;
if (tagObj == Media)
//do this
else if (tagObj == Container)
//do this
else
throw new Exception("Not a recognized type");
</code></pre>
http://stackoverflow.com/questions/357396/list-generics-and-casting/357407#35740710Answer by David B for List Generics and CastingDavid B2008-12-10T20:03:35Z2008-12-10T20:03:35Z<p>The proper thing to do is to have two overloads for this function, accepting each type:</p>
<pre><code>public void MyMethod(List<Media> source)
{
//do stuff with a Media List
}
public void MyMethod(List<Container> source)
{
//do stuff with a Container List
}
</code></pre>
http://stackoverflow.com/questions/357396/list-generics-and-casting/357416#3574162Answer by Joel Coehoorn for List Generics and CastingJoel Coehoorn2008-12-10T20:05:42Z2008-12-10T20:05:42Z<p>What David said. </p>
<p>But if this must go through the same function, the <a href="http://msdn.microsoft.com/en-us/library/58918ffs." rel="nofollow"><code>typeof</code></a> operator should help. Also, this sounds more like you have an architectural flaw. How is the Media class related to the Container class? Is there some common interface used by both that they should implement?</p>
http://stackoverflow.com/questions/357396/list-generics-and-casting/357426#3574263Answer by ema for List Generics and Castingema2008-12-10T20:08:08Z2008-12-10T20:08:08Z<p>You can use the GetGenericArguments method of type Type, something like this:</p>
<p>object[] templates = myObject.GetType().GetGenericArguments();</p>
http://stackoverflow.com/questions/357396/list-generics-and-casting/357473#3574730Answer by Charles Bretana for List Generics and CastingCharles Bretana2008-12-10T20:22:24Z2008-12-10T20:22:24Z<p>Well, it depends on what your "//do this" method is... If it's a method that operates on a Media, or a Container object, and does different things based on which it is, then you should put that method in those classes... </p>
<p>Declare an interface named ICanDoThis</p>
<pre><code>public interface ICanDoThis { void DoThis(); }
</code></pre>
<p>make sure that both Media and Container implement that interface </p>
<pre><code>public class Media: ICanDoThis { // }
public class Container: ICanDoThis { // }
</code></pre>
<p>and then, in your client code "other function" you can </p>
<pre><code> public void OtherFunction(List<ICanDoThis> list)
{
foreach(ICanDoThis obj in list)
obj.DoThis();
}
</code></pre>
<p>And that's it... This code will call the appropriate implementation in either the Media Class or the Container class depending on what the concrete Type of the actual object is, without your having to write code to discriminate between them ... </p>