I have already posted this about 5 times now, but I don't see it so I am trying again...
The new build is great! It compiled the project completely unaltered the first time. Amazingly it took about 15 seconds, whereas another well known Fortran compiler for VS takes 10-15 minutes to compile the same project!
I'm not trying to execute this Fotran routine from a C# WinForms application. One of the routines expects the following
SetXXX(Salford.Fortran.Char XXX, int length_of_XXX)
What do I need to pass from C# if I want to pass Application.ExecutablePath (a string)?
SUBROUTINE SetXXX(VALUE)
IMPLICIT NONE
CHARACTER*(*) VALUE
XXX = VALUE
END