Microsoft ExpertMember Since: November 2005 Total Comments: 1
RE: what is shadowing in .net?
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.Reju