5

What exactly is a com object, and how do I use it?

Johann Gerell
  • 24,991
  • 10
  • 72
  • 122
lital maatuk
  • 5,921
  • 20
  • 57
  • 79

1 Answers1

2

The essence of COM is a language-neutral way of implementing objects that can be used in environments different from the one in which they were created, even across machine boundaries. For well-authored components, COM allows reuse of objects with no knowledge of their internal implementation, as it forces component implementers to provide well-defined interfaces that are separate from the implementation

More details you can check out on WIKI

Sachin Shanbhag
  • 54,530
  • 11
  • 89
  • 103