using the 'is' keyword in a switch in c# - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T18:54:51Zhttp://stackoverflow.com/feeds/question/223643http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/223643/using-the-is-keyword-in-a-switch-in-c1using the 'is' keyword in a switch in c#sre2008-10-21T21:52:16Z2009-03-17T17:20:38Z
<p>I'm currently adding some new extended classes to this code:</p>
<pre><code>foreach (BaseType b in CollectionOfExtendedTypes) {
if (b is ExtendedType1) {
((ExtendedType1) b).foo = this;
}
else if (b is ExtendedType2) {
((ExtenedType2) b).foo = this;
}
else {
b.foo = this;
}
}
</code></pre>
<p>and was curious if there is a way to use the <code>is</code> keyword functionality in a switch statement?</p>
http://stackoverflow.com/questions/223643/using-the-is-keyword-in-a-switch-in-c/223647#2236470Answer by R4Y for using the 'is' keyword in a switch in c#R4Y2008-10-21T21:53:56Z2008-10-21T21:53:56Z<p>In C#, I believe the switch statement only works with integers and strings.</p>
http://stackoverflow.com/questions/223643/using-the-is-keyword-in-a-switch-in-c/223650#2236504Answer by harpo for using the 'is' keyword in a switch in c#harpo2008-10-21T21:54:46Z2008-10-21T21:54:46Z<p>Nope. See</p>
<p><a href="http://stackoverflow.com/questions/44905/c-switch-statement-limitations-why">C# switch statement limitations - why?</a></p>
http://stackoverflow.com/questions/223643/using-the-is-keyword-in-a-switch-in-c/223658#2236582Answer by JaredPar for using the 'is' keyword in a switch in c#JaredPar2008-10-21T21:57:03Z2008-10-21T21:57:03Z<p>In C# it's not possible to use the "is" keyword as part of a switch statement. All case labels in a switch must evaluate to constant expressions. "is" is not convertible to a constant expression.</p>
<p>I definately feel the pain though when it comes to switching on types. Because really the solution you outlined works but it's a conveluted way of saying for x do y, and a do b. It would be much more natular to write it more like the following </p>
<pre><code>
TypeSwitch.Do(
sender,
TypeSwitch.Case<Button>(() => textBox1.Text = "Hit a Button"),
TypeSwitch.Case<CheckBox>(x => textBox1.Text = "Checkbox is " + x.Checked),
TypeSwitch.Default(() => textBox1.Text = "Not sure what is hovered over"));
</code></pre>
<p>Here's a blog post I wrote on how to achieve this functionality. </p>
<p><a href="http://blogs.msdn.com/jaredpar/archive/2008/05/16/switching-on-types.aspx" rel="nofollow">http://blogs.msdn.com/jaredpar/archive/2008/05/16/switching-on-types.aspx</a></p>
http://stackoverflow.com/questions/223643/using-the-is-keyword-in-a-switch-in-c/223667#2236670Answer by Owen for using the 'is' keyword in a switch in c#Owen2008-10-21T21:59:29Z2008-10-21T21:59:29Z<p>You could add a method <code>getType()</code> to <code>BaseType</code> that is implemented by each concrete subclass to return a unique integral ID (possibly an enum) and switch on that, yes?</p>
http://stackoverflow.com/questions/223643/using-the-is-keyword-in-a-switch-in-c/223680#2236800Answer by Fry for using the 'is' keyword in a switch in c#Fry2008-10-21T22:01:10Z2008-10-21T22:01:10Z<p>Not really, switches match a variable (string or int (or enum) ) with a constant expression as the switch statement.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/06tc147t" rel="nofollow">http://msdn.microsoft.com/en-us/library/06tc147t</a>(VS.71).aspx</p>
http://stackoverflow.com/questions/223643/using-the-is-keyword-in-a-switch-in-c/223688#2236881Answer by Samuel Kim for using the 'is' keyword in a switch in c#Samuel Kim2008-10-21T22:04:58Z2008-10-21T22:04:58Z<p>While it is not possible to use switch statement for checking types, it is not impossible to reduce the problem to a more manageable codebase.</p>
<p>Depending on the specific situation and requirement I would consider.</p>
<ul>
<li><p>Using a <code>IDictionary<Type, T></code> to store the result in a dictionary. T could itself be a delegate that you can call on. This will work if you don't need to worry about inheritance - catering for inheritance will take a little more work.</p></li>
<li><p>Using the type name of the class (which is string) inside the switch statement. This uses <code>switch (b.GetType().Name)</code> and there is no option for deep inheritance structure.</p></li>
</ul>
http://stackoverflow.com/questions/223643/using-the-is-keyword-in-a-switch-in-c/223693#2236937Answer by Austin Salonen for using the 'is' keyword in a switch in c#Austin Salonen2008-10-21T22:06:15Z2008-10-21T22:06:15Z<p>This really looks like a situation for a good inheritance implementation. If you override the appropriate methods in the derived classes, you may not need the checks in the loop at all.</p>
http://stackoverflow.com/questions/223643/using-the-is-keyword-in-a-switch-in-c/223856#223856-1Answer by Robert Rossney for using the 'is' keyword in a switch in c#Robert Rossney2008-10-21T22:56:51Z2008-10-21T22:56:51Z<p>There's another thing to think about besides the way that the compiler handles <code>switch</code> statements, and that's the functioning of the <code>is</code> operator. There's a big difference between:</p>
<pre><code>if (obj is Foo)
</code></pre>
<p>and</p>
<pre><code>if (obj.GetType() == typeof(Foo))
</code></pre>
<p>Despite the name, the <code>is</code> operator tells you if an object is <em>compatible</em> with a given type, not if it <em>is</em> of the given type. This leads to not-entirely-obvious bugs (though this one's pretty obvious) that look like:</p>
<pre><code>if (obj is System.Object)
{
//this will always execute
}
else if (obj is Foo)
{
//this will never execute
}
</code></pre>
<p>Many of the suggestions here point you in the direction of using the object's type. That's fine if what you really want is logic associated with each type. But if that's the case, walk carefully when using the <code>is</code> operator.</p>
<p>Also: though you can't modify these base types, that doesn't mean that you can't use Owen's suggestion. You could implement extension methods:</p>
<pre><code>public enum MyType { Foo, Bar, Baz };
public static class MyTypeExtension
{
public static MyType GetMyType(this Foo o)
{
return MyType.Foo;
}
public static MyType GetMyType(this Bar o)
{
return MyType.Bar;
}
public static MyType GetMyType(this Baz o)
{
return MyType.Baz;
}
}
</code></pre>
<p>Then you <em>can</em> use a <code>switch</code> statement:</p>
<pre><code>switch (myObject.GetType())
{
case MyType.Foo:
// etc.
</code></pre>
http://stackoverflow.com/questions/223643/using-the-is-keyword-in-a-switch-in-c/449511#4495110Answer by Jeffrey Hantin for using the 'is' keyword in a switch in c#Jeffrey Hantin2009-01-16T04:23:47Z2009-01-16T04:23:47Z<p>Type-cases and object oriented code don't seem to get on that well together in my experience. The approach I prefer in this situation is the <a href="http://c2.com/cgi/wiki?DoubleDispatch" rel="nofollow">double dispatch pattern</a>. In short:</p>
<ul>
<li><b>Create a listener type</b> with an empty virtual method Process(ExtendedTypeN arg) for each extended type you will be dispatching over.
<li><b>Add a virtual method</b> Dispatch(Listener listener) to the base type that takes a listener as argument. Its implementation will be to call listener.Process((Base) this).
<li><b>Over<i>ride</i></b> the Dispatch method in each extended type to call the appropriate <b>over<i>load</i></b> of Process in the listener type.
<li><b>Extend the listener type</b> by overriding the appropriate Process method for each subtype you are interested in.
</ul>
<p>The argument shuffling dance eliminates the narrowing cast by folding it into the call to Dispatch -- the receiver knows its exact type, and communicates it by calling back the exact overload of Process for its type. This is also a big performance win in implementations such as .NET Compact Framework, in which narrowing casts are extremely slow but virtual dispatch is fast.</p>
<p>The result will be something like this:</p>
<pre><code>
public class Listener
{
public virtual void Process(Base obj) { }
public virtual void Process(Derived obj) { }
public virtual void Process(OtherDerived obj) { }
}
public class Base
{
public virtual void Dispatch(Listener l) { l.Process(this); }
}
public class Derived
{
public override void Dispatch(Listener l) { l.Process(this); }
}
public class OtherDerived
{
public override void Dispatch(Listener l) { l.Process(this); }
}
public class ExampleListener
{
public override void Process(Derived obj)
{
Console.WriteLine("I got a Derived");
}
public override void Process(OtherDerived obj)
{
Console.WriteLine("I got an OtherDerived");
}
public void ProcessCollection(IEnumerable collection)
{
foreach (Base obj in collection) obj.Dispatch(this);
}
}
</code></pre>