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?
