Merhabalar,
C# .Net 4.5 ile geliştirdiğim bir .dll i yine Visual Studio üzerinde geliştirdiğim Python projesi içerisinde nasıl kullanabilirim? Aşağıdakiler genel cevaplarda bulduğum ve denediğim fakat çalışmayan yöntemler.
import ctypes
hllDll = ctypes.WinDLL("C:\\SimpleLib.dll")
print(hllDll.GetHelloWorld())
a = ctypes.cdll.LoadLibrary("C:\\SimpleLib.dll")
print(a.GetHelloWorld())