Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
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, 5324👍, 0💬
Popular Posts:
What are the two kinds of comments in JSP and what's the difference between them? <%-- JSP Co...
What is shadowing ? When two elements in a program have same name, one of them can hide and shadow t...
What is the method to customize columns in DataGrid? Use the template column.
If locking is not implemented what issues can occur? IFollowing are the problems that occur if you d...
What is difference between ADPATCH and OPATCH ? # ADPATCH is utility to apply ORACLE application Pat...