👩💻 Join our community of thousands of amazing developers!
NativeLibrary is a new class in .NET Core 3.0 for interacting with native libraries. In this article, we’ll take a closer look. DllImport .NET makes it simple to call functions from a native library using DllImport: [DllImport("mylibrary")] public static extern int foo(); This code makes available the function foo from the native library mylibrary. This […] The post Interacting with native libraries in .NET Core 3.0 appeared first on Red Hat Developer....