Answer Posted / shalini
When two programming elements share the same name, one of
them can hide, or shadow, the other one. In such a
situation, the shadowed element is not available for
reference; instead, when your code uses the shared name,
the Visual Basic compiler resolves it to the shadowing
element.
Shadowing through inheritance is hiding a method of a
base class and providing a new implementation for the same.
This is the default when a derived class writes an
implementation of a method of base class which is not
declared as overridable in the base class. This also serves
the purpose of protecting an implementation of a new method
against subsequent addition of a method with the same name
in the base class.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
How you can return View from ASP.NET Web API method?
Can you change a Master Page dynamically at runtime?
What is a web based system?
What are the components of ado.net?
Why is global asax is used?
Can we set which type of comparison we want to perform by the CompareValidator control?
there is two functions function a and function b like fun a(){.... ..... } fun b() { } in function b i write the coding to add two numbers and i need to dispaly the sum result in function a with out using global variable. how we do?
Any disadvantages in Dataset and in reflection ?
Why cyclomatic complexity is important?
To display data in the combo box, prior to setting the Data Source, what kind of property on a Combo Box do you set with a column name?
What are the different types of Caching techniques in ASP.NET?
What is query string? What are its advantages and limitations?
What is the difference between response.redirect and server.transfer?
Define authentication and authorization.
How we can force all the validation controls to run?