Tagged Questions
1
vote
2answers
86 views
vs using [namespace.x.xx]?
I have seen that you can either do
using System.IO
and use
Path.GetDirectoryName(blah blah)
OR directly use
System.IO.Path.GetDirectoryName(blah blah);
Is there any difference between them ...