I have created a DLL in .net.I try use this dll but the next error occurs:“External function not found”
The DLL contains a class “ClassX” and a function “FunctionY”
I insert the dll in “C:\lotus\domino” in the server and I try use it in a server agent.
The declaration: Declare Function FunctionY Lib “c:\lotus\domino\NameDLL.dll” Alias “FunctionY” (x As String, y As String, z As String, b As String) As Long
And I use it: s = FunctionY(“…”,“…”,“…”,“…”)
Is possible use a .NET dll? I have used C function but I am not sure if is possible with C# NET dll.
Thanks in advanced