Hello, I'm back with what should be a simple question.
How do you load or store C# byte[] or int[] arrays into the Fortran equivalent? For example,
OBJECT('System.Byte[]') C_ARRAY C_ARRAY=NEW@('System.Byte[]',256) INTEGER(KIND=1) F_ARRAY(256) ... DO I=1,256 C_ARRAY(I-1) ??? F_ARRAY(I) END DO ...
If I pass F_ARRAY to the C# method, I get 'No .NET Method matches...'; If I try a simple assignment ('='), I get 'You cannot assign...'. What, then?