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, 5116👍, 0💬
Popular Posts:
What is the FP per day in your current company?
How can we connect to Microsoft Access , Foxpro , Oracle etc ? Microsoft provides System.Data.OleDb ...
What is the difference between delegate and events? ã Actually events use delegates in bottom. But ...
What is thread? A thread is an independent path of execution in a system.
Which JavaScript file is referenced for validating the validators at the client side ? WebUIValidati...