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 happens when you add a reference to a COM object from with in a dot net application?
Managed Code and Unmanaged Code related ASP.NET - What happens when you add a reference to a COM object from with in a dot net application?
✍: Guest
When you add a reference to a COM object, Visual Studio automatically generates an interop assembly for the object and places it in the project’s /bin folder. The interop assembly is created from the COM object’s type information and contains the metadata that the CLR uses to call the unmanaged code in the COM object. You can then use COM objects from within .NET code the same way that you use .NET classes.
You can view this interop assembly using the Microsoft Intermediate Language Disassembler (Ildasm.exe) included in the .NET Framework.
2009-04-08, 5032👍, 0💬
Popular Posts:
How can I implement a thread-safe JSP page? You can make your JSPs thread-safe by having them implem...
What is the quickest sorting method to use? The answer depends on what you mean by quickest. For mos...
When should the register modifier be used? Does it really help? The register modifier hints to the c...
What is the purpose of Replication ? Replication is way of keeping data synchronized in multiple dat...
How did you implement UML in your project ? PART II Implementation phase / Coding phase (Class diagr...