I am new to .net programming. I heard all .net supported languages can call .net dll even written by another .net supported languages. My question is that: Can IronPython call .net dll written by c# directly or easily under its command interpretation window?
Asked
Active
Viewed 367 times
0
-
you can also use pythonnet – denfromufa Jan 30 '16 at 02:08
1 Answers
1
Yes, you should be able to call any managed dll. An example of how you would do that is detailed in https://stackoverflow.com/a/14210917/413672