Bounded Context with modules in .NET

"[email protected] [domaindrivendesign]" <[email protected]> 28 Nov 2014 13:13:15 -0800
Newsgroups gmane.comp.programming.domain-driven-design
Message-ID <[email protected]>
As I understand, a Bounded Context can contain multiple modules. 
 

 Let us take a Product Catalog Bounded Context. This Product Catalog BC can contain modules like CatalogManagement, ProductManagement.
 

 When it is implemented in .net, the CatalogManagement and ProductManagement can be implemented as assemblies. Since they are part of the same Bounded Context, should they be implemented in the same namespace to draw the boundary?
 

 This is my understanding of Bounded Context. The core domain and sub domain are discussed at the problem space while Bounded Context and Module are discussed at the solution space where there are implementations. I don't know how the Bounded Context and Modules are implemented in .NET.
 

 Thanks.