Using "Me"

  • Thread starter Thread starter Harry Strybos
  • Start date Start date
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
 
Considering that the two lines involved are immediately adjacent to each
other, I think we are dealing with a case of one developer creating all the
code.
 
Yes, but I was speaking in more general terms.


James Hahn said:
Considering that the two lines involved are immediately adjacent to each
other, I think we are dealing with a case of one developer creating all
the code.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top