I have a vendor specific COM interface. Intellisense shows properties while writing; thus I write something like
App.Element.Car.seats
which is somehow known to Visual Studio. In the autocomplete window, these elements are shown as properties of App, which is the COM interface to the external application. Does Visual Studio somehow read the methods and properites that are available in the dll / library?
However, call returns System.__Object, but it should be a number of some type. I do not have any documentation to the COM interface; thus I have to work just with the dll. Is there any way to get the correct type and retrieve the actual value that is contained somehow in seats?
In VB, this notation does work, but I must use C#.