Tagged Questions

The Dynamic Language Runtime (DLR) from Microsoft is an ongoing effort to bring a set of services that run on top of the Common Language Runtime (CLR) and provides language services for several different dynamic languages.

learn more… | top users | synonyms

35
votes
4answers
1k 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 ...
16
votes
1answer
325 views

How to highlight dynamic code in visual studio

Is it possible and if so how, to make Visual Studio highlight dynamic expressions in code? When I just hovered above some code, visual studio told me it was a dynamic expression. This made me realize ...
16
votes
6answers
4k views

Are there any .NET CLR/DLR implementations of ECMAScript?

Does anyone know of real (i.. no vaporware) implementations of ECMAScript targeting the .NET CLR/DLR? Ideally something like what Rhino is for Java. A solid port of Rhino running on .NET Framework / ...
13
votes
1answer
326 views

Making a CLR/.NET Language Debuggable

What are some resources for making a CLR/.NET language debuggable? I'm developing an ActionScript 3 to IL compiler, which uses DLR CallSites and CallSiteBinders to handle the dynamic aspects of the ...
13
votes
3answers
4k views

Will .Net 4.0 include a new CLR or keep with version 2.0

Will .Net 4.0 use a new version of the CLR (v2.1, 3.0) or will it stick with the existing v2.0? Supplementary: Is it possibly going to keep with CLR v2.0 and add DLR v1.0? Update: Whilst this might ...
11
votes
3answers
1k views

What's the best source of information on the DLR (.NET 4.0 beta 1)?

I'm currently researching the 2nd edition of C# in Depth, and trying to implement "dynamic protocol buffers" - i.e. a level of dynamic support on top of my existing protocol buffer library. As such, I ...
10
votes
2answers
945 views

C# 4.0: casting dynamic to static

This is an offshoot question that's related to another I asked here. I'm splitting it off because it's really a sub-question: I'm having difficulties casting an object of type dynamic to another ...
9
votes
3answers
401 views

Are the “Iron” languages ready for prime time?

Is it okay to start using Iron Ruby and Iron Python in production systems? Also, are there any additional requirements for hosting them? And, for the bonus points, given that F# is a functional ...
8
votes
3answers
187 views

C#'s 'dynamic' in F#

One example of using the DLR in C# is as follows: dynamic dyn = new MyObject(); dyn.MyMethod(); //resolved at runtime what would be the equivalent in F#? Thanks.
8
votes
4answers
842 views

PowerShell Runspace vs DLR

With the .NET 4.0 beta now available, and thus the wider availability of the .NET Dynamic Language Runtime, I guess these kinds of topics are going to become "hotter". I'm confused about the ...
7
votes
4answers
1k views

Information about IronJS

Can any one point out as where can I get some tutorials about IronJS and how to call a method written in IronJS from C# 4.0 Thanks C#4.0, IronJS
7
votes
6answers
375 views

What scripting language for our .NET based IDE?

We have an IDE for machine automation that allows its users to develop solutions by connecting objects and components visually. They can also write "plugins" using C++ and C#. The IDE is written using ...
7
votes
1answer
202 views

Is it possible to host the .Net DLR in an “idiot-proof” sandbox?

I would like to host the Dynamic Language Runtime (DLR) in such a way that users who run arbitrary scripts in it cannot bring the process down? The DLR hosting spec describes how to host the DLR in a ...
7
votes
3answers
1k views

Is it possible to load and execute C# snippets using DLR?

The majority of material I have found regarding DLR is related to IronPython. Can you parse and execute C# using DLR? If so is there over head that would prevent you from attempting this on a web ...
7
votes
1answer
458 views

Using the DLR for (primarily) static language compilation

I'm building a compiler that targets .NET and I've previously generated CIL directly, but generating DLR trees will make my life a fair amount easier. I'm supporting a few dynamic features, namely ...
6
votes
2answers
135 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 ...
6
votes
2answers
202 views

Using C# dynamic method for an object

I have a method that should return the ids from a List. Usually I would use reflection for this task (I cannot use a generic method since the classes are usually POCOS that don't share an interface or ...
6
votes
1answer
608 views

Base a small expression DSL on the DLR or keep it hand-rolled in F#?

I'm building a spreadsheet-like application, where a lot of small calculations needs to be stitched together in a tree-structure. These calculations are user-defined and I need a way for the user to ...
6
votes
5answers
1k 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 ...
5
votes
1answer
84 views

What happens when import a module in ironpython?

In CPython, I think, import means compile the py file to a pyc file and execute the file in the current frame, and the next time CPython will load the pyc file directly without compiling again. What ...
5
votes
3answers
166 views

Can a statically typed language be developed with the DLR?

I have to develop a compiler for a statically typed language for .NET I'm considering using the DLR for this instead of building all the parts (Lexer/Parser, Syntax, Semantic, Code Generation). Would ...
5
votes
3answers
172 views

Anyone using IronJS yet?

I'm just wondering if there is anyone else using IronJS within their apps yet? IronJS is really awesome as it's JavaScript on the DLR. Personally, I've been waiting to be able to write both ...
5
votes
1answer
149 views

.NET DLR safe or sandboxed script

I am using the DLR within a small part of a larger C# project, IronPython being the language in question. For some parts of the system the user is able to enter a small script to customise behaviour ...
5
votes
5answers
780 views

Dynamic Lang. Runtime vs Reflection

I am planning to use dynamic keyword for my new project. But before stepping in, I would like to know about the pros and cons in using dynamic keyword over Reflection. Following where the pros, I ...
5
votes
3answers
333 views

Making the Case for IronRuby and IronPython

I guess everyone has already heard the news about some key developers leaving the Dynamic Languages team due to what they perceive as waning support for Dynamic Languages at Microsoft. I'm quite fond ...
5
votes
3answers
860 views

Would you recommend Iron Ruby, Iron Python, or PowerShell for making a C# application a script host?

After some quick tinkering, right now I'm leaning towards powershell for two main reasons (note these a purely my opinions and if they are wrong, I'd love to know!!!): 1) It's simple to create a ...
5
votes
3answers
1k views

DLR return type

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 ...
5
votes
1answer
376 views

What are the limitations of Dynamic Language Runtime in .NET 4.0?

I know that anonymous functions are not supported as arguments to a dynamic method call. What are other such limitations of DLR in .NET 4.0?
5
votes
1answer
1k views

Print out Linq Expression Tree Hierarchy

The DLR has some pretty cool code for Expression's, including some very nice code to print out Expression trees which I want to use so that: int a = 1; int b = 2; Expression<Func<int, ...
5
votes
2answers
1k views

How does the DLR work?

.Net 4 will have the a DLR (Dynamic Language Runtime). I know that it will be used for things like Iron Python and Iron Ruby. But is that all it's good for? How is the DLR useful? How does the DLR ...
5
votes
5answers
4k views

How do you implement C#4's IDynamicObject interface?

To implement "method-missing"-semantics and such in C# 4.0, you have to implement IDynamicObject: public interface IDynamicObject { MetaObject GetMetaObject(Expression parameter); } As far as I ...
4
votes
1answer
75 views

Expression.Lambda and query generation at runtime, simplest “Where” example

I was trying to generate a simple Lambda Expression at runtime with no luck... something like this: var result = queryableData.Where(item => item.Name == "Soap") Here is my example class and a ...
4
votes
3answers
178 views

Final Year Project - Idea for a domain specific language to run on the DLR? [closed]

I have my undergraduate final year project coming up and am very interested in lexers, parsers, compilers and the like and would like to use the DLR (.NET 4.0 dynamic language runtime) for my ...
4
votes
1answer
98 views

.NET DLR and SecurityException's

What are the mandatory PermissionSet items that the DLR requires in order to function correctly? We've enabled the DLR in our sandboxed scripting environment. But some code like the following... ...
4
votes
2answers
906 views

IronPython invocation from C# (with SciPy) fails with ImportException: “No module named mtrand”

I have a python library I am trying to use via IronPython (v2.7 RC1 [2.7.0.30]) invocation from C# application. The library uses NumPy and SciPy quite extensively, which does work with SciPy and NumPy ...
4
votes
1answer
175 views

A future for Dynamic Feature Runtime in context of c#?

So c# had evolved as staticly typed language and does a more than a perfect job in holding the niche in developing the Line of Business Applications with .net framework. Now, clearly, in recent ...
4
votes
2answers
321 views

The DLR, Boo, and the JVM

I'm just starting to try to learn more about the .Net VM underpinnings, and am immediately thrown off by something. I know there's this new thing called the DLR that allows for all the dynamic stuff ...
4
votes
3answers
513 views

What is the difference between CLR and DLR in C#?

What is the difference between CLR and DLR in C#? are these two concept comparable?
4
votes
1answer
176 views

What is a good practical application example of the Dynamic Language Runtime in .NET 4.0?

I wish to better understand the real-world application of this new feature that consists the Dynamic Language Runtime (DLR). I would like: Brief explanation of how it could be used; A brief sample ...
4
votes
2answers
103 views

Most common applications of the C# 4.0 dynamic type

Now that people have been using C# 4.0 for a while I thought I'd see how people were most often using the type 'dynamic' and why has this helped them solve their problem better than they may have done ...
4
votes
3answers
234 views

IronPython exposing .Net type to the runtime engine

I'm looking to expose specific .Net types to the IronPython runtime. I can do this: ScriptEngine engine = Python.CreateEngine(); ScriptScope scope = engine.CreateScope(); ...
4
votes
4answers
1k views

C# instead of IronRuby as an embedded “scripting” language in .NET 3.5

What is the best practice for using C# as an embedded internal scripting application for a .NET 3.5 application? I have an app with a few small IronRuby scripts in it. None of which is really ...
4
votes
3answers
415 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 ...
4
votes
1answer
538 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. ...
4
votes
3answers
769 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 ...
4
votes
6answers
962 views

Which Dynamic .NET language makes more sense to learn, Iron Ruby or Iron Python?

I'd like to take some time to learn more about dynamic languages built on top of the DLR and I'm not sure which language would be better to learn. Having limited time, I really only have time to look ...
3
votes
3answers
88 views

Dynamic property evaluation

With the DLR, i would like to do something like this: class MyClass { int MyProperty { get; set; } } In razor, I would do something like this. (InstanceOfMyClass is some dynamic object that ...
3
votes
1answer
76 views

Why is calling CompiledCode.Execute from C# for an IronPython script not behaving as expected

I am trying to call an IronPython (2.7.1) script from C# (4.0) This is related to IronPython integration in C#: a specific problem/question I have a python script like below in a file script.py ...
3
votes
1answer
91 views

How to refer self-contained C# class library project with IronPython inside (Visual Studio 2010)

This question is kind of lengthy but I try to provide you with the details that I think is necessary to find the answer. I have a C# WPF solution (.Net 4) consisting of a main project, building a WPF ...
3
votes
4answers
128 views

Is the DLR needed in .NET 4.0?

I'v been looking into using DLR for my toy language, and I'm a bit confused. If .NET 4.0 has LINQ Expression trees, Dynamic Objects and the "dynamic" type, then do we really need the DLR anymore? What ...

1 2 3 4