What are the technical limitations of COM Interop?

Q

Managed Code and Unmanaged Code related ASP.NET - - What are the technical limitations of COM Interop?

✍: Guest

A

The .NET Framework was developed to address the limitations of COM. Because of this evolution, there are limits to the .NET features that you can use from COM. The following list describes these limits:

Static members : COM requires objects to be created before use, so it does not support .NET Static members.

New members : COM flattens the inheritance tree of .NET objects, so members in a derived class that hides members inherited from a base class are not callable.

Constructors with parameters : COM can’t pass parameters to an object’s constructor.

2009-04-14, 5047👍, 0💬