I wrote a C# library in linux with .NET Core. Now I want to use it in python. Has someone experience with this topic? Is this even possible?
I tried to use
import ctypes as ct
lib = ct.WinDLL("PythonTest.dll")
but I run in this error
Traceback (most recent call last):
File "<input>", line 1, in <module>
AttributeError: 'module' object has no attribute 'WinDLL'