X
xzzy
I was wondering why we have to have
using System.Data
using System.Configuration
using etc....
why are they not all lumped into one 'using'?
In other words, is there a best way to use project classes with 'using'
meaning
is it best to put them all in one folder = no performance hit for doing so
using MyProject.Classes;
or
is it best to put them in different folders to avoid a performance hit by
'using' all of them
using MyProject.Classes.This;
using MyProject.Classes.That;
using MyProject.Classes.Other;
Thank you
using System.Data
using System.Configuration
using etc....
why are they not all lumped into one 'using'?
In other words, is there a best way to use project classes with 'using'
meaning
is it best to put them all in one folder = no performance hit for doing so
using MyProject.Classes;
or
is it best to put them in different folders to avoid a performance hit by
'using' all of them
using MyProject.Classes.This;
using MyProject.Classes.That;
using MyProject.Classes.Other;
Thank you