All Questions
4 questions
1
vote
2
answers
1k
views
Calling PythonFunction's from a VB application hosting Iron Python
I'm a C++ programming who was tapped to write a small application in Visual Basic. The application hosts an IronPython runtime and I am attempting to define some function in python and then call them ...
9
votes
2
answers
2k
views
IronPython - Editor for end-user
We're currently investigating how we can embed IronPython (scripting) into our C# application.
We see the benefits it will provide to our end users, giving them the ability to hook into our ...
2
votes
3
answers
785
views
DLR Scripting within Silverlight 4 Application
I would like to add some scripting support to a Silverlight 4 application that I'm working on. I have the latest stable releases of both IronRuby and IronPython installed on my machine with Visual ...
5
votes
1
answer
1k
views
Reasons for using a DLR-based language rather than C# for scripting tasks?
I'm considering embedding a scripting language into one of my software projects and have identified two options: compiling C# at run-time via CodeDOM and embedding a DLR-based scripting language. ...