How to write program in C# that will act exactly as COM object ?
Hi All,
I need to write some GUI application in MFC that will be able to support some COM call from other application.
I want to do it in C# beside MFC - but i don't know how can i write in C# and support all logical architecture that i have in COM.
How can i register the application ?
How can i define some call from other application ?
Thanks for any help.
Re: How to write program in C# that will act exactly as COM object ?
Look at the [COMVisible] attribute. That will give you a starting point.
Re: How to write program in C# that will act exactly as COM object ?
Also look up RegAsm.exe as well as here.
Darwen.
Re: How to write program in C# that will act exactly as COM object ?