Class inheritance, what am i missing?
I run into a problem while writing a series of classes inheriting from each other.i stripped the code to the basic example below for simplicity.Basically i have a series of classes inheriting from each other in cascade (called MyBaseClass, MyDerivedClass, MyDoubleDerived)
and they differ for the value assigned to the F_Type property (value 1 2 and 3 respectively). i am creating an instance of MyDou
...