1
vote
2answers
172 views
Is IronPython usable as a replacement for CPython?
Has IronPython gotten to a point where you can just drop it in as a replacement for CPython?
To clarify: I mean can IronPython run applications originally written for CPython (no .NET involved, of …
1
vote
2answers
34 views
overview of DLR?
I'm looking for a high level overview of how one goes from an AST to working code via the DLR, does anyone have (a link for) something like that?
2
votes
2answers
34 views
Is it safe to execute user entered expressions as IronPython
I'm working on a large ASP.NET software product. We'd like to allow users to enter expressions rather than constants for certain fields. Typically something like:
(Price * 1.175) + 25
The obvious …
0
votes
1answer
20 views
Bazaar VCS under IronPython?
Has anyone successfully executed the source control system Bazaar in IronPython?
10
votes
4answers
275 views
How do I express a void method call as the result of DynamicMetaObject.BindInvokeMember?
I'm trying to give a short example of IDynamicMetaObjectProvider for the second edition of C# in Depth, and I'm running into issues.
I want to be able to express a void call, and I'm failing. I'm …
3
votes
2answers
33 views
IronPython compile-time checks against CLR libraries?
I know that IronPython is a dynamically typed language so what I am asking sounds pretty stupid, but is it possible to do something with an IronPython script to make sure the changing of the CLR …
0
votes
1answer
47 views
WPF App hosting/executing Ruby code via IronRuby
Hey folks, hoping you can help me get started with IronRuby. I have several Ruby scripts that I want to execute from my WPF Application (due to the use of several RMagick methods I can't get natively) …
1
vote
3answers
67 views
IL / CLR / DLR References?
I'm wanting to learn more about IL and CLR / DLR under the hood. A friend of mine recommended the book "Inside Microsoft .NET IL Assembler", but since it came out in 2002 I fear it's pretty out of …
0
votes
2answers
26 views
IronRuby and Handling XAML UI Events
What it is the most brief and concise way of adding event handlers to UI elements in XAML via an IronRuby script? Assumption: the code to add the event handler would be written in the IronRuby script …
2
votes
1answer
62 views
How do I implement intellisense support for a custom DLR language in VS2008?
I have just started writing my first language for the .NET DLR.
I would like to know if it is possible to extend Visual Studio 2008 IntelliSense to handle the syntax of a custom DLR language?
EDIT: …
1
vote
1answer
101 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. …
0
votes
1answer
21 views
IronRuby is_a with DateTime
Can anybody explain why DateTime in IronRuby is Object[]
sample code
IronRuby 0.9.1.0 on .NET 2.0.50727.4927
Copyright (c) Microsoft Corporation. All rights reserved.
>>> require 'System'
…
2
votes
1answer
100 views
Embedding IronScheme in a C# app
I'm trying to add a plugin architecture to my C# app. I've chosen IronScheme as the language, and also because it's built on the DLR, which should make it easier to embed.
On the Codeplex Wiki, they …
1
vote
3answers
157 views
DLR return type
hi. I need some DLR help. I am implementing an IDynamicMetaObjectProvider and DynamicMetaObject but I am having some issues getting the expected return type. I am overiding BindInvokeMember in the …
0
votes
2answers
31 views
Avoiding unnecessary boxing in DLR
I'm playing with DLR to get a better understanding of it. I'm not completely familiar yet with all its concepts and its terminology so sorry for any terminological or conceptual mistakes in my …
