Ok, I have a base class and a derived class.
I have to be able to 'reset' the fields back to default settings by using a method. The base class has different fields than the derived class but I need to 'reset' all of them from one method. If I create the method in the base class, it will generate a compile error cause those fields don't exist in the derived class. what Is the best solution here?
