question about Assemblies

  • Thread starter Thread starter Susan Baker
  • Start date Start date
S

Susan Baker

Are assemblies the same as libraries (i.e. C/C++ libraries)?. I know
they may have security attributes etc - but at a conceptual level, are
they a means of partitioning code into modular, logical units?
 
Hi Susan,

Technically an assembly is composed of modules (files) but most assemblies
have a single file. Also, an assembly can be also an .exe, not always a dll.
But for assemblies that are class libraries (.dll), yes, at conceptual level
they are like Win32 DLLs or ActiveX dlls.

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio 2005, Visual Studio .NET,
VB6, VB5 and VBA
You can code, design and document much faster in VB.NET, C#, C++ or VJ#
Free resources for add-in developers:
http://www.mztools.com
 
Back
Top