Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What is Manifest?
.NET INTERVIEW QUESTIONS - What is Manifest?
✍: Guest
Assembly metadata is stored in Manifest. Manifest contains all the metadata needed to do the following things
* Version of assembly
* Security identity
* Scope of the assembly
* Resolve references to resources and classes.
* The assembly manifest can be stored in either a PE file (an .exe or .dll) with Microsoft intermediate language (MSIL) code or in a stand-alone PE file that contains only assembly manifest information.
2010-03-09, 4124👍, 0💬
Popular Posts:
Can Java object be locked down for exclusive use by a given thread? Yes. You can lock an object by p...
How To Analyze Tables with "mysqlcheck"? - MySQL FAQs - Administrator Tools for Managing MySQL Serve...
How To Create an Array in PL/SQL? - Oracle DBA FAQ - Introduction to PL/SQL If you want create an ar...
If locking is not implemented what issues can occur? IFollowing are the problems that occur if you d...
What is more advisable to create a thread, by implementing a Runnable interface or by extending Thre...