Is it just terminology?

link|improve this question

RCW stands for Runtime (as in CLR) Callable Wrapper – Two Bit Gangster Feb 10 '09 at 7:36
feedback

2 Answers

up vote 2 down vote accepted

They are connected with each other. Interop is the overall term for using native dll's within .NET. A RCW is a wrapper which is needed to use one specific component/class/object in .NET.

link|improve this answer
feedback

Interop is for calling raw DLL exports.

RCW (Runtime Callable Wrapper) is used to expose COM objects to .NET classes - ie., to make COM objects callable by .NET code. The RCW is a .NET proxy that uses interop to interface to the COM object.

You could use Interop directly to COM, but that's just doing it the hard way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.