I want to use my c# dll in a java project. Now I need to create a wrapper library for my c# code.
My C#-Method has this signature
public static String scanFile(String path)
now how can I call this from my wrapper c++ class?
String scanFile(const System::String path){
return CardScan32::Scanner::scanFile(path);
}
Currently I try this but its not working, because it cannot be called with this argument list