I wonder, is it possible to pass sets from Delphi to C# or vice versa?
Say we have the very simple scenario of a set of enums defined in Delphi as follows:
TMyEnum = (A, B, C);
TMyEnumSet = set of TMyEnum;
Is it possible to create a hydra plugin that takes TMyEnumSet as parameter and returns it back to the Delphi host application? If so, how would the C# side look?