List Generics and Casting - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T12:53:27Z http://stackoverflow.com/feeds/question/357396 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/357396/list-generics-and-casting 0 List Generics and Casting Michael G 2008-12-10T20:01:30Z 2008-12-10T20:22:24Z <p>Hello everyone.</p> <p>I have two classes: Media and Container.</p> <p>I have two lists <code>List&lt;Media&gt;</code> and <code>List&lt;Container&gt;</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&lt;> 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#357407 10 Answer by David B for List Generics and Casting David B 2008-12-10T20:03:35Z 2008-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&lt;Media&gt; source) { //do stuff with a Media List } public void MyMethod(List&lt;Container&gt; source) { //do stuff with a Container List } </code></pre> http://stackoverflow.com/questions/357396/list-generics-and-casting/357416#357416 2 Answer by Joel Coehoorn for List Generics and Casting Joel Coehoorn 2008-12-10T20:05:42Z 2008-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#357426 3 Answer by ema for List Generics and Casting ema 2008-12-10T20:08:08Z 2008-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#357473 0 Answer by Charles Bretana for List Generics and Casting Charles Bretana 2008-12-10T20:22:24Z 2008-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&lt;ICanDoThis&gt; 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>