meaning of protected override

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • abdulkahar
    New Member
    • Apr 2013
    • 1

    meaning of protected override

    sorry i want to know this <meaning of protected override>. and could you please tell me the meaning above
  • Unkno
    New Member
    • Mar 2013
    • 9

    #2
    Its an access level modifier.protec ted override" is often used in template methods.
    protected means that that the method is visible inside the class and for theirs derivers, nobody else can use it..
    override means that it will change the implementation of a previously defined method with the same name and parameters

    Comment

    Working...