There is an article in the MSDN called "COM INTEROP Part 1: C# Client
Tutorial" with the steps to follow to create coclasses and type interfaces:
(Does not explain what to do with properties)
The following paragraph is the reason for me to be interested in the order
of methods:
"COM interfaces are represented in C# as interfaces with ComImport and Guid
attributes. They cannot include any interfaces in their base interface list,
and they must declare the interface member functions in the order that the
methods appear in the COM interface."
My goal is to create a dll (single one) that uses some COM objects. If I add
a reference, Visual Studio will add an extra dll with the proxy objects and
I don't want two dlls, just one. If there is some article more complete or
more clear....
I want to show the oledb connection dialog, I can show de dialog, and I can
create a Connection object, but when I assign the connection string, and
consult it the value is no right, I thought it was because of the "member
order".