Hello,
I've a C# DLL named SoundLogDLL.dll
I used this code to call the function run() from my dll but it gives this error:

What do I need to do for the methods of my dll became visible in python?
I've a C# DLL named SoundLogDLL.dll
>>> from ctypes import *
>>> x = cdll.LoadLibrar y("C:\\SoundLog \\SoundLogDLL.d ll")
>>> x.run()
>>> x = cdll.LoadLibrar y("C:\\SoundLog \\SoundLogDLL.d ll")
>>> x.run()

What do I need to do for the methods of my dll became visible in python?
Comment