C# - How .Net and Non.net components communicate with eachother?
C# - How .Net and Non.net components communicate with eachother?
It depends on what kind of component and in which languages it is written. For example, communication beteen C#(managed code) and c++(unmanaged), you can use tlbimp, tlbexp, regasm, gacutil.
Refer to the following link for complete tutorial Steps For Creating Class Library as COM Server
|