Namespaces and DLLs
Hi all, sorry if this question is too newbie, but it is because I am c# newbie :)
Is there some 'penalty' to putting classes in different namespaces? Like runtime delays and such?
Let's, for example purpose, assume I have three classes. Each class does some things and each eventually needs data generated by the other ones.
Currently I have them all on the same .exe and the same namespace.
For organization, I am considering throwing each to a separate namespace. On the ideal part of things I am thinking in putting each different namespace on it's own DLL file, but I don't know if I will damage runtime performance by doing it so.
|