I have created a VB.net DLL with Visual Basic Express very simple, this is my code :
Public Class Class1
Public Function SayHello() As String
Return "Hello"
End Function
End Class
- I Would like to use this DLL from JAVA with JNA, but Eclipse say me than the procedure "SayHello" doesn't exist in my DLL.
- When i use tools like "Dependency Walker", my function isn't visible.
So my question : how can i make this function callable and visible ??
Thanks. Vincent.