Hello everyone,
I'm using dll, that was created in C# .NET, inside delphi via COM.
After the delphi unit was created, i saw all the functions and procedures inside the classes in dll and it's OK.
**The problem** is that these classes contain Properties that i need to populate in order to make the classes work,
BUT i can't see them at all! - They do not exist in the unit!
Properties in C# looks like this: public clsPath path { get; set; }
Be note that the Dll is an EXTERNAL so i do not have the code or can modify it.
I need a solution that will make me use these Properties.
I've added some of the code from C# .NET class:
public class clsRequest : IInterfaceEVV
{
public clsRequest();
public clsPath path { get; set; } <-- The Properties are here!
public string serialCommPort { get; set; } <-- The Properties are here!
public string url { get; set; } <-- The Properties are here!
public int A1(clsInput inputObj, ref clsPinPad pinpad, ref clsGlobal globalObj);
public int A2(clsInput inputObj, ref clsPinPad pinpad, ref clsGlobal globalObj);
public int A3(clsInput inputObj, ref clsGlobal globalObj);
. . .
}
Thanks In Advanced, Roni/Pini.
I'm using Delphi XE2 / win7 64bit with dll that is C# Visual studio 2010 assembly.
Connect with Us