user1899020
user1899020

Reputation: 13575

Can IronPython call .net dll directly?

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?

Upvotes: 0

Views: 379

Answers (1)

minghan
minghan

Reputation: 1103

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

Upvotes: 1

Related Questions