Forum Discussion
BeiBeiHe
Mar 01, 2023Copper Contributor
How do I convert the C# .dll file to .so file
Requirements: I wrote a standalone module (a separate dll file) in C#, mainly through COM real-time monitoring of a hardware, based on Win7 system. Originally to WPF program call, now Android system...
robinkeen
Sep 16, 2023Copper Contributor
You can't directly convert a C# .dll file to a .so file. .dll files are used on Windows with C# (managed code), while .so files are used on Linux with native code (C/C++). You'd need to rewrite the code in C/C++ and then compile it into a .so library for Linux.
https://apkmedley.com/
https://apkmedley.com/