1
vote
1answer
44 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 scri …
1
vote
1answer
50 views
Why can’t I import my C# type into IronPython?
I have some types in a C# library I wrote, e.g.:
namespace SprocGenerator.Generators
{
public class DeleteGenerator : GeneratorBase
{
public DeleteGenerator(string da …
3
votes
6answers
92 views
What is the equivalent of the C# “using” block in IronPython?
What's the equivalent of this in IronPython? Is it just a try-finally block?
using (var something = new ClassThatImplementsIDisposable())
{
// stuff happens here
}
7
votes
12answers
422 views
How to impress developers with IronPython/Python
I need an IronPython\Python example that would show C#/VB.NET developers how awesome this language really is.
I'm looking for an easy to understand code snippet or application I …
9
votes
9answers
203 views
What are the (dis)advantages of writing unit tests in a different language to the code?
Unit tests have different requirements than production code. For example, unit tests may not have to be as performant as the production code.
Perhaps it sometimes makes sense to w …
0
votes
1answer
19 views
IronPython ScriptRuntime equivalent to CPython PYTHONPATH
The following import works inside ipy.exe prompt but fails using IronPython ScriptRuntime inside a C# 4.0 program.
import ConfigParser
C# code:
using System;
using System.Colle …
2
votes
1answer
39 views
Nonblocking webserver on .Net for Comet applications
I am trying to implement a Comet style (e.g. chat) application using IronPython. While I don't need to scale to twitter like dimensions, it is vital that the response time is ligh …
0
votes
1answer
19 views
Rollback in Ironpython using System.Data.SqlClient
I am unable to rollback using the following code snippet and need help:
import clr
import sys
clr.AddReference('System.Data')
from System.Data.SqlClient import SqlConnection, SqlP …
1
vote
2answers
34 views
IronPython asp.net IntelliSense
I'm trying IronPython for asp.net, I got a simple CRUD screen to work. I've read IntelliSense doesnt work for IronPython, but is there any way to get rid of Visual Studio underlin …
3
votes
2answers
199 views
How does ironpython speed compare to other .net languages?
Hi,
I would like to give sources for what I'm saying but I just dont have them, it's something I heard.
Once a programming professor told me that some software benchmarking done …
0
votes
1answer
62 views
C# or other .net equivalents of core python modules for IronPython?
I would like to compile and distribute (on .net) some python programs that work well with IronPython, but I am new to .net and am getting errors related to particular python module …
0
votes
1answer
17 views
VB webform in IronPython asp.net website
Hi,
I tried to bring a previously done webform made in vb.net to an IronPython asp.net website with no luck. After seeing it didnt work, I tried to write the simplest codebehind v …
0
votes
4answers
50 views
Python: stop execution after a maximum time
Hello,
I have an IronPython script that execute some exes. I want to stop the execution of the current exe if its runtime exceeds a certain amount of time. How can I do this?
Cur …
0
votes
1answer
36 views
C# Running IronPython On Multiple Threads
I have a WPF app that controls audio hardware. It uses the same PythonEngine on multiple threads. This causes strange errors I see from time to time where the PythonEngines Globals …
0
votes
3answers
66 views
How to use Microsoft.Scripting.Hosting?
To embed some IronPython Code into C# I want to use the ScriptEngine
using IronPython.Hosting;
using Microsoft.Scripting.Hosting;
I found the reference for IronPython, but where …
