I had a dll written in C. So for a C# application, I wrote a .cs wrapper that worked in calling the dll functions..
Now I have a C# dll and need to call the functions using python 3.4 (LoadLibrary). What would be the preferred route of doing this
1) convert the C# dll code into C and make a new c-style dll (with exports).
2) Create some kind of wrapper in python that allows it to see the C# dll functions as-is? ( if possible)
3) Both Python for .Net and IronPython don't seem to be actively maintained anymore (The windows installer shows python 2.7). Is there a better alternative?