edit typos
Hi,
This may be a fashionable question, but if it helps me follow the best practice, I don't care: P
Let's say I want to use classes and methods in the System.Data namespace ... as well as in the System.Data.SqlClient namespace.
Is it better to play a game or just a parent, i.e. ....
using System.Data
using System.Data.SqlClient
or simply...
using System.Data
More importantly, I believe whether it has any effect on the application - or is it just a matter of preference (the announcement of both the parent and the child keeps the rest of the code in a neat and tidy state, but this is to the detriment of the speed of the application, because stretching it in the entire parent namespace, and then in the child?)
Hope it's not too many waffles