6
votes
4answers
373 views
Can JScript.NET be used to script a .NET application?
Since MS appears to have killed Managed JavaScript in the latest DLR for both server-side (ASP.NET Futures) and client-side (Silverlight), has anyone successfully used non-obsolete APIs to allow …
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?
0
votes
1answer
20 views
Bazaar VCS under IronPython?
Has anyone successfully executed the source control system Bazaar in IronPython?
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 …
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 …
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 …
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 …
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 …
4
votes
3answers
457 views
Can I implement method_missing in C# 4 and have it actually return a value?
I was trying to figure out how to implement method_missing in C# 4, based on all of 2 blog posts floating around on IDynamicObject.
What I want to do is have a Business Logic Layer that has a …
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) …
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'
…
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 …
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 …
0
votes
1answer
9 views
DLR DefaultBinder available for use in Silverlight?
I'd like to use the Codeplex DefaultBinder from within a Silverlight-deployed DLR project (my own custom language implementation).
Is that possible? Is the DefaultBinder compatible with Silverlight 3 …
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: …
