I have a C# dll that is called from Delphi (version 6). The parameters for the C# method are <string,string,string,...> but for some reason Delphi is insisting on <const: widestring,const: widestring,const: widestring,...> as the passed-in parms. However, I need to reassign these fields in a loop and call the routine many times.
How can I either: relax the const requirement or assign a varying string to a const string?
Thanks,
How can I either: relax the const requirement or assign a varying string to a const string?
Thanks,