tags:

views:

228

answers:

2

when we will say a dll is COM dll and when we will say a dll is vc++-MFC dll ?

What is the difference between them ?

+1  A: 

A COM DLL exposes one or more COM objects. For more on COM DLLs please see http://msdn.microsoft.com/en-us/library/2wad1c0e(VS.80).aspx

Brian Rasmussen
If i am developing MFC dll , how can i access from the visual studio c#?If i am developing COM dll , how can i access from the visual studio C#?
muthukumarm
COM objects can be referenced through the Add Reference dialog. For regular native DLLs you need to use p/invoke, see http://msdn.microsoft.com/en-us/library/aa446536.aspx
Brian Rasmussen
then what is the use of type lib converter ?
muthukumarm
A: 

I believe your question is wrong . Actually MFC is one of the ways to create a com DLL along with ATL

hemachandran