Libraries, Assemblies and Components... Oh my...

C

Chuck Bowling

I don't understand the difference between these three things... Can someone
clarify?
 
D

Dmitriy Lapshin [C# / .NET MVP]

An assembly is the .NET term for a self-describing collection of modules
having so called manifest.
An assembly is a unit of .NET application.

A library is usually an assembly that contains reusable code but is not an
executable program by itself.

A component is just a particular type of class supporting design-time
features.
 
C

Chuck Bowling

Thank you Dmitriy. That helped some. Looks like I still have quite a ways to
go before I can become a C# guru... ;)

Dmitriy Lapshin said:
An assembly is the .NET term for a self-describing collection of modules
having so called manifest.
An assembly is a unit of .NET application.

A library is usually an assembly that contains reusable code but is not an
executable program by itself.

A component is just a particular type of class supporting design-time
features.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

Chuck Bowling said:
I don't understand the difference between these three things... Can someone
clarify?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top