Switch Case on type of object (C#) - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T21:30:55Zhttp://stackoverflow.com/feeds/question/708911http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c3Switch Case on type of object (C#)Sem Dendoncker2009-04-02T09:07:04Z2009-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#7089218Answer by Anton Gogolev for Switch Case on type of object (C#)Anton Gogolev2009-04-02T09:10:32Z2009-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<Type, int></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#7089221Answer by Program.X for Switch Case on type of object (C#)Program.X2009-04-02T09:10:57Z2009-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#7089273Answer by Ch00k for Switch Case on type of object (C#)Ch00k2009-04-02T09:12:16Z2009-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#7089292Answer by Dave Van den Eynde for Switch Case on type of object (C#)Dave Van den Eynde2009-04-02T09:12:33Z2009-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#7089313Answer by sharptooth for Switch Case on type of object (C#)sharptooth2009-04-02T09:13:11Z2009-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#7098651Answer by Jason Coyne for Switch Case on type of object (C#)Jason Coyne2009-04-02T14:08:20Z2009-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#14266262Answer by Arnis L. for Switch Case on type of object (C#)Arnis L.2009-09-15T11:36:23Z2009-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; }
}
/// <summary>
/// Extensions, because otherwise casing fails on Switch==null
/// </summary>
public static class SwitchExtensions
{
public static Switch Case<T>(this Switch s, Action<T> a)
where T : class
{
return Case(s, o => true, a, false);
}
public static Switch Case<T>(this Switch s, Action<T> a,
bool fallThrough) where T : class
{
return Case(s, o => true, a, fallThrough);
}
public static Switch Case<T>(this Switch s,
Func<T, bool> c, Action<T> a) where T : class
{
return Case(s, c, a, false);
}
public static Switch Case<T>(this Switch s,
Func<T, bool> c, Action<T> 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<Fizz>
(action => { doingSomething = FirstMethodCall(); })
.Case<Buzz>
(action => { return false; })
</code></pre>
http://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c/1835503#18355030Answer by James for Switch Case on type of object (C#)James2009-12-02T20:17:25Z2009-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<Type, int> typeDict = new Dictionary<Type, int>
{
{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>