show/hide this revision's text 2 changed tags, title, fixed typos

using Is the 'is' keyword in a switch in c#

I'm currently adding some ne new extended classes to this code:

foreach (BaseType b in CollectionOfExtenedTypesCollectionOfExtendedTypes) {
  if (b is ExtendedType1) {
    ((ExtendedType1) b).foo = this;

  }
  else if (b is ExtenedType2ExtendedType2) {
    ((ExtenedType2) b).foo = this;

  } 
  else {
    b.foo = this;

  }
}

and was curious if there is a was way to use the is keyword functionality in a switch statement?

show/hide this revision's text 1

using Is keyword in a switch in c#

I'm currently adding some ne extended classes to this code:

foreach (BaseType b in CollectionOfExtenedTypes) {
  if (b is ExtendedType1) {
    ((ExtendedType1) b).foo = this;

  }
  else if (b is ExtenedType2) {
    ((ExtenedType2) b).foo = this;

  } 
  else {
    b.foo = this;

  }
}

and was curious if there is a was to use the is keyword functionality in a switch statement?