Naming a derived class

I have a class derived from FileStream, that is actually just like it except that it has some extra functions (ReadInt16, ReadInt32, etc.). How should I name it best


Answer this question

Naming a derived class

  • djshades2004

    I would name it <Prefix>FileStream, where the prefix is a word that best communicates the extra functionality you have added.

    Mark.



  • Naming a derived class