J
Jimmy
Hi,
The other day, my boss corrected me to use "explicit qualification"
instead of using "using directive".
she asked me to use :
"System.Data.DataSet ds = new System.Data.DataSet();"
instead of :
"using System.Data;
DataSet ds = new DataSet();"
She was insisting that by using "explicit qualification", the machine
would recognize the code faster than those used "using directive".
Is that true? I am looking for some article to clarify this. If anyone
the answer which performs better or both perform exactly the same with
solid evidence and proof, let me know.
Thanks
The other day, my boss corrected me to use "explicit qualification"
instead of using "using directive".
she asked me to use :
"System.Data.DataSet ds = new System.Data.DataSet();"
instead of :
"using System.Data;
DataSet ds = new DataSet();"
She was insisting that by using "explicit qualification", the machine
would recognize the code faster than those used "using directive".
Is that true? I am looking for some article to clarify this. If anyone
the answer which performs better or both perform exactly the same with
solid evidence and proof, let me know.
Thanks