Default namespace of assembly at runtime

  • Thread starter Thread starter Gerald
  • Start date Start date
G

Gerald

Hi

I am probably overlooking something but
how do i retrieve the default namespace of an assembly at runtime?

Best regards,


--
 
There is no notion of a "default namespace" at runtime - the default
namespace is simply used when new classes are added to a project. You can
use reflection to get the namespace of any particular class at runtime.

-Chris
 
Back
Top