vote up 4 vote down star

Is it possible to expose an API in a .NET application by embedding a scripting language like IronPython?

How is it done?

flag

2 Answers

vote up 6 vote down check

IronPython has a hosting API which can be used to execute IronPython scripts from a C#\VB application.

This is a good example of embedding IronPython inside a winforms app.Note that the hosting APIs have changed since that post. This post shows an example of the latest API

You can find the latest specs here

link|flag
Thanks! It would be great if you could also indicate some advantages/disadvantages of using Iron* over VSTA (apart from tech support). – guillermooo Oct 16 '08 at 23:32
vote up 1 vote down

I haven't used it personally, but you should look at Visual Studio Tools for Applications

I'm not sure if Iron Python is supported as a language for it or not, but that would be the easiest path to enable your application to be programmable.

link|flag
How could I missed this! I'm working with VSTO mostly... – guillermooo Oct 16 '08 at 12:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.