vote up 3 vote down star

Has the introduction of the .net framework made raw programming in COM and DCOM redundant ?

(Except for using some COM+ services, e.g. for transaction management through the System.EnterpriseServices namespace)

flag

Please take a look at the FAQ. I'm referring specifically to the section starting "What kind of questions should I not ask here?" – Onorio Catenacci Sep 15 '08 at 17:19

5 Answers

vote up 5 vote down check

Not yet, because the OS is still unmanaged.

If MS finally do what their labs have been talking about for years and produce a fully managed OS then it will.

That OS won't be backwards compatible though. They would have to produce managed versions of Office, IE, etc first. They will have to produce a virtual machine to run unmanaged apps.

The pain would be something similar to the move from Mac OS9 to OSX.

link|flag
vote up 2 vote down

Not yet, but I'd say in the long term, it aims to. Obviously there will always be a place for the lower levels, but from what I understand of Microsoft's strategy, the move is towards replacing as much with managed code as possible.

link|flag
vote up 0 vote down

.NET has been deliberately designed to replace COM (and, consequently, DLL Hell) so while .NET applications still can access COM components, all new development are encouraged to move to .NET except if you have a very good reason to stick with COM.

link|flag
vote up 3 vote down

COM was the last major technology that MS actually dogfooded. MS are continuing to build new APIs that depend on COM; for example, Vista's new Media Foundation (a kind of successor to DirectShow, which was also COM-based) is a COM API. So is Direct3D10 (and I would assume D3D11). I don't think it's going to disappear any time soon, and for a lot of Windows programming tasks it's not at all redundant.

link|flag
vote up 1 vote down

I suppose that depends on what you mean by 'raw'. I still find the need to expose COM APIs from .Net class libraries on occasion. Makes the process of migrating from certain platforms to .Net a lot easier since I can replace small pieces via COM.

link|flag

Your Answer

Get an OpenID
or

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