What is it? As I understood it's a kind of Microsoft special technology for some objects. But what exactly?
|
feedback
|
|
It's basically an old technology used for writing programs in the Windows environment. It's big and complex and wasn't enjoyable to manage/support. The .NET framework is its replacement. | |||||||||
feedback
|
|
A COM object is basically a black box that implements some known interface. It can also register itself with Windows so that programs can get a hold of it. For example, let's say there is some interface There's a lot more to it, of course, but that may be an example that makes it more concrete for you. | |||
|
feedback
|
|
See this Wikipedia article: Component Object Model
A COM object is often implemented in a DLL file. They can be used by programs for a variety of functions. The term "object" as used here refers to objects in object-oriented programming. | |||||
feedback
|