S
Scott M.
It's only a poor choice when one developer has created all the code. In
most cases, a developer is using types created by someone else and so, they
have no control of the type/member/parameter names. In this common
scenario, naming collisions can occur, which is why a more full
qualification of the type is a simple way to solve the problem.
Using Me narrows the memory locations that the compiler must look for a type
match much like using namespace names would.
-Scott
most cases, a developer is using types created by someone else and so, they
have no control of the type/member/parameter names. In this common
scenario, naming collisions can occur, which is why a more full
qualification of the type is a simple way to solve the problem.
Using Me narrows the memory locations that the compiler must look for a type
match much like using namespace names would.
-Scott