Hi,
I've upgrade a library to the new version, we usually import this library as Type Library (COM object) in Delphi (since "yesterday"). Now, in this new version the COM object are no longer supported, so I'm looking around.
The new library support the C# .NET, C++ (unmanaged), C++ (managed) and C.
I know that I can use the C .dll with a Delphi wrapper but... Just out of curiosity I tried to import the .NET Assembly.
I never use the .NET Assembly before, and honestly I don't know very well what is the .NET Assembly.
I'm searching on google and I found some documentations, but before start reading I ask you if you know a good start point "Delphi and .NET Assembly".
Do you have experience with that?
After the import I get the wrapper with a lot of class/interface but they are all empty.
Eg:
// *********************************************************************//
// Interface: _HObject
// Flags: (4432) Hidden Dual OleAutomation Dispatchable
// GUID: {8E90512D-E586-352A-A70F-C7F1518E667D}
// *********************************************************************//
_HObject = interface(IDispatch)
['{8E90512D-E586-352A-A70F-C7F1518E667D}']
end;
// *********************************************************************//
// Interface: _HImage
// Flags: (4432) Hidden Dual OleAutomation Dispatchable
// GUID: {2D195846-332C-32E4-A6A3-8B089435BB54}
// *********************************************************************//
_HImage = interface(IDispatch)
['{2D195846-332C-32E4-A6A3-8B089435BB54}']
end;
Any suggestion will be appreciate.
Thank you, as always, for your time.