sorry i want to know this <meaning of protected override>. and could you please tell me the meaning above
meaning of protected override
Collapse
X
-
Tags: None
-
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