Jump to content

Recommended Posts

Posted (edited)

C#

namespace test
{
    public class test
    {
        public static string testreturn()
        {
            return "this is a test return string";
        }
    }
}

au3

$call = DllCall("test.dll","str","testreturn")
MsgBox(0,0,@error)

msgbox displays 3. any ideas what to do?

Edited by E1M1

edited

Posted

If you know some C, you could probably use MS Visual Studio write a small C utility program to create a DLL that can then make calls to the .NET DLL.

Posted

maybe make C++ dll that receive whole DllCall() as string, then executes it by autoit rules, and then return array. I heard about plugins for au3 maybe these could help.

edited

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...