|
(7/31/2002)
Effective C#: Distinguish among Module, Assembly and Namespace
namespace: A logical naming scheme for grouping related types.
module: A loadable unit, which can contain type declarations and type implementations.
assembly: A collection of functionality built, versioned, and deployed as a single implementation unit (one or multiple files).
assembly manifest: An integral part of every assembly that renders the assembly self-describing.
|