Switch Case on type of object (C#) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T21:30:55Z http://stackoverflow.com/feeds/question/708911 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c 3 Switch Case on type of object (C#) Sem Dendoncker 2009-04-02T09:07:04Z 2009-12-02T20:17:25Z <p>If you want to switch a type of object, what is the best way to do this?</p> <p>ex: </p> <pre><code>private int GetNodeType(NodeDTO node) { switch (node.GetType()) { case typeof(CasusNodeDTO): return 1; break; case typeof(BucketNodeDTO): return 3; break; case typeof(BranchNodeDTO): return 0; break; case typeof(LeafNodeDTO): return 2; break; default: return -1; break; } } </code></pre> <p>I know this doesn't work that way, but I was wondering how you could solve this. Is an if then else else else statement appropriate in this case? Or do you use this switch and add .ToString() to the types?</p> <p>Kind regards, Sem</p> http://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c/708921#708921 8 Answer by Anton Gogolev for Switch Case on type of object (C#) Anton Gogolev 2009-04-02T09:10:32Z 2009-04-02T09:10:32Z <p>If I <em>really</em> had to <code>switch</code> on type of object, I'd use <code>.ToString()</code>. However, I would avoid it at all costs: <code>IDictionary&lt;Type, int&gt;</code> will do much better, <a href="http://en.wikipedia.org/wiki/Visitor%5Fpattern" rel="nofollow">visitor</a> might be an overkill but otherwise it is still a perfectly fine solution.</p> http://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c/708922#708922 1 Answer by Program.X for Switch Case on type of object (C#) Program.X 2009-04-02T09:10:57Z 2009-04-02T09:10:57Z <p>I'd use the string (Name) at the top of the switch: </p> <pre><code> private int GetNodeType(NodeDTO node) { switch (node.GetType().Name) { case "CasusNodeDTO": return 1; break; case "BucketNodeDTO": return 3; break; // ... default: return -1; break; } } </code></pre> http://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c/708927#708927 3 Answer by Ch00k for Switch Case on type of object (C#) Ch00k 2009-04-02T09:12:16Z 2009-04-02T09:12:16Z <p>I'd just use an if statement. In this case:</p> <pre><code>Type nodeType = node.GetType(); if (nodeType == typeof(CasusNodeDTO)) { } else ... </code></pre> <p>The other way to do this is:</p> <pre><code>if (node is CasusNodeDTO) { } else ... </code></pre> <p>I suspect the latter might be a bit faster.</p> http://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c/708929#708929 2 Answer by Dave Van den Eynde for Switch Case on type of object (C#) Dave Van den Eynde 2009-04-02T09:12:33Z 2009-04-02T09:12:33Z <p>You can do this:</p> <pre><code>if (node is CasusNodeDTO) { ... } else if (node is BucketNodeDTO) { ... } ... </code></pre> <p>While that would be more elegant, it's possibly not as efficient as some of the other answers here.</p> http://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c/708931#708931 3 Answer by sharptooth for Switch Case on type of object (C#) sharptooth 2009-04-02T09:13:11Z 2009-04-02T09:13:11Z <p>One approach is to add a pure virtual GetNodeType() method to NodeDTO and override it in the descendants so that each descendant returns actual type.</p> http://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c/709865#709865 1 Answer by Jason Coyne for Switch Case on type of object (C#) Jason Coyne 2009-04-02T14:08:20Z 2009-04-02T14:08:20Z <p>Depending on what you are doing in the switch statement, the correct answer is polymorphism. Just put a virtual function in the interface/base class and override for each node type.</p> http://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c/1426626#1426626 2 Answer by Arnis L. for Switch Case on type of object (C#) Arnis L. 2009-09-15T11:36:23Z 2009-09-15T11:36:23Z <p><a href="http://blogs.msdn.com/peterhal/archive/2005/07/05/435760.aspx" rel="nofollow">Here</a> is some info why .net does not provide switching on types.</p> <p>As usual - workarounds always exists.</p> <p>This one ain't mine, but unfortunately i have lost source.<br /> It makes switching on types possible but i personally think it's quite awkward (dictionary idea is better): </p> <pre><code> public class Switch { public Switch(Object o) { Object = o; } public Object Object { get; private set; } } /// &lt;summary&gt; /// Extensions, because otherwise casing fails on Switch==null /// &lt;/summary&gt; public static class SwitchExtensions { public static Switch Case&lt;T&gt;(this Switch s, Action&lt;T&gt; a) where T : class { return Case(s, o =&gt; true, a, false); } public static Switch Case&lt;T&gt;(this Switch s, Action&lt;T&gt; a, bool fallThrough) where T : class { return Case(s, o =&gt; true, a, fallThrough); } public static Switch Case&lt;T&gt;(this Switch s, Func&lt;T, bool&gt; c, Action&lt;T&gt; a) where T : class { return Case(s, c, a, false); } public static Switch Case&lt;T&gt;(this Switch s, Func&lt;T, bool&gt; c, Action&lt;T&gt; a, bool fallThrough) where T : class { if (s == null) { return null; } T t = s.Object as T; if (t != null) { if (c(t)) { a(t); return fallThrough ? s : null; } } return s; } } </code></pre> <p>usage: </p> <pre><code> new Switch(foo) .Case&lt;Fizz&gt; (action =&gt; { doingSomething = FirstMethodCall(); }) .Case&lt;Buzz&gt; (action =&gt; { return false; }) </code></pre> http://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c/1835503#1835503 0 Answer by James for Switch Case on type of object (C#) James 2009-12-02T20:17:25Z 2009-12-02T20:17:25Z <p>I'm faced with the same problem and came across this post. Is this what's meant by the IDictionary approach:</p> <pre><code>Dictionary&lt;Type, int&gt; typeDict = new Dictionary&lt;Type, int&gt; { {typeof(int),0}, {typeof(string),1}, {typeof(MyClass),2} }; void Foo(object o) { switch (typeDict[o.GetType()]) { case 0: Print("I'm a number."); break; case 1: Print("I'm a text."); break; case 2: Print("I'm classy."); break; default: break; } } </code></pre> <p>If so, I can't say I'm a fan of reconciling the numbers in the dictionary with the case statements.</p> <p>This would be ideal but the dictionary reference kills it:</p> <pre><code>void FantasyFoo(object o) { switch (typeDict[o.GetType()]) { case typeDict[typeof(int)]: Print("I'm a number."); break; case typeDict[typeof(string)]: Print("I'm a text."); break; case typeDict[typeof(MyClass)]: Print("I'm classy."); break; default: break; } } </code></pre> <p>Is there another implementation I've overlooked?</p>