If the methods in an Interface or AbstractClass are already commented (thats how its correct right? Always comment the interface and abtract methods), what do I have to write into the Subclass methods? Nothing? Or maybe a reference(how?)? What is the correct way? And what do I do, if lets say I commented a Method in a Subclass, but I would like to extend it in the Subclass method?
If the methods in an Interface or AbstractClass are already commented (thats how its
Share
If saying “commented” you mean add a
comment, soVisualStudiointellisence would show you it: There is no concept of comment derivation(polymorphism), so for every child of thatinterfaceorabstract classyou have to add a new comment.