Assemblies : Assembly Load « Assembly « C# / CSharp Tutorial

C# / CSharp Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statement
5. String
6. struct
7. Class
8. Operator Overload
9. delegate
10. Attribute
11. Data Structure
12. Assembly
13. Date Time
14. Development
15. File Directory Stream
16. Preprocessing Directives
17. Regular Expression
18. Generic
19. Reflection
20. Thread
21. I18N Internationalization
22. GUI Windows Forms
23. 2D
24. Design Patterns
25. Windows
26. XML
27. ADO.Net
28. Network
29. Directory Services
30. Security
31. unsafe
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C# / CSharp Tutorial » Assembly » Assembly Load 
12. 4. 1. Assemblies

To quote Microsoft, "Assemblies are the building blocks of the .NET Framework."

An assembly is composed of four sections.

  1. The first is the assembly manifest.
  2. The manifest contains information about the assembly itself.
  3. The manifest includes such things as the name of the assembly, its version number, type mapping information, and cultural settings.
  4. The second section is type metadata
  5. The type metadata is information about the data types.
  6. The type metadata aids in cross-language interoperability.
  7. The third part of an assembly is the program code stored in Microsoft Intermediate Language (MSIL) format.
  8. The fourth constituent of an assembly is the resources used by the program.
12. 4. Assembly Load
12. 4. 1. Assemblies
12. 4. 2. difference between Assembly.Load and Assembly.LoadFrom
12. 4. 3. Load types(classes) from a Assembly(exe file)
12. 4. 4. Load the System.Xml assembly using an AssemblyName
12. 4. 5. Create Type by Assembly qualifed type name
12. 4. 6. Late Binding
12. 4. 7. Assembly unloading
12. 4. 8. Dynamic assembly introspection
12. 4. 9. Deeper Reflection: Listing All the Types in an Assembly
12. 4. 10. Assembly Loader
12. 4. 11. GetManifestResourceStream
w___w__w_.___ja_v__a_2_s_.c___o_m_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.