Calling a C# library from python

It is actually pretty easy. Just use NuGet to add the “UnmanagedExports” package to your .Net project. See https://sites.google.com/site/robertgiesecke/Home/uploads/unmanagedexports for details. You can then export directly, without having to do a COM layer. Here is the sample C# code: using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; using RGiesecke.DllExport; class Test … Read more