Is there a tool that generates P/Invoke signatures for arbitrary unmanaged DLL?

后端 未结 6 1633
失恋的感觉
失恋的感觉 2020-12-13 00:17

I stumbled upon a tool that generates P/Invoke signatures for Microsoft\'s own unmanaged DLLs: PInvoke Interop Assistant

Is there a similar tool that will generate P

6条回答
  •  借酒劲吻你
    2020-12-13 00:49

    You can create C# wrapper for any native DLL including both C-style DLL exporting functions and C++ DLL exporting classes by using xInterop C++ .NET Bridge with .NET to Native C++ Bridge. It is available for free evaluation with some limitations.

    Disclaimer: I am the author of xInterop C++ .NET Bridge.

提交回复
热议问题