LegacyWrapper v2.1.0.0 Release Notes

Release Date: 2017-08-20 // over 6 years ago
    • It is now possible to load 64bit libraries in a 32bit process:

      using (var client = new WrapperClient(TestDllPath, TargetArchitecture.Amd64)) { result = (int)client.Invoke<TestStdCallDelegate>("TestStdCall", new object[] { input }); }

    • Please note that this will only work if the OS is 64 bit.

    • 🚀 As the second optional parameter defaults to X86, this release should be backwards compatible.

    👀 See this blog post for details.