Hello I have a question about an Fortran DLL.
!------Fortran Code ---- MODULE MODELL contains
Subroutine LegBer(c1)
integer*2 c1(10)
integer*2 ca
integer*2 cb
ca = 2
cb = 3
c1(1) = ca * cb
! RETURN
END SUBROUTINE LegBer
END MODULE MODELL
I want to use these DLL within on C# Projekt and load it dynamicaly. So have to know the Namespace. But I don't know the namespace. How can I get a Namespace in my Fortran Code? Like: // C# code Namespace.MODELL.LegBer(obj);
Michael Burkhardt