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 14, 2023Copper Contributor
Converting a C# .dll file to a .so file for Linux involves recompiling the C# code using tools like Mono or .NET Core/.NET 5+, addressing dependencies, and using the appropriate compiler or build system, typically with the dotnet publish command, to generate a self-contained Linux binary compatible with your target architecture.