Now I find that I work mainly in a solo environment in which I type fully qualified methods, more and more, instead of using the use directive. I used to just stay in accordance with the most famous coding practice on the team.
Personally, it’s easier for me to read the detailed code at a glance, I type quickly, especially with autocomplete, and most often I use Google as a source of documentation, in which a fully qualified name returns a much narrower set of results. These are obviously very arbitrary reasons that prefer to fully qualify the use of the use directive.
On this day and in the age of refactoring tools, is there a specific reason why using the use directive is superior to fully qualified or vice versa, or is it a purely personal discretionary problem, such as the comment interval? Finally, what do you prefer and why?
source
share