Answered Questions

  • what is shadowing in .net?

    Gaurav

    • Jul 16th, 2011

    Shadowing is a concept of polymorphism usage in Object Oriented Programming. This is a concept related to over-riding functions at run-time or making a shadow of the object's methods in the inherited ...

    hari krishna

    • Dec 12th, 2006

    The programming techniuqe of replacing a member of a base class with a new member in a derived class.Shadowing differs from overriding in that base class's shadowed member is no longer available from the derived class