Top "Dynamic-language-runtime" 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.

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.…

c# .net lambda expression-trees dynamic-language-runtime
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?

c# dynamic clr dynamic-language-runtime
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 …

c# dynamic reflection dynamic-language-runtime
Iron Python : what are good uses for Iron Python

I have an affinity for python, but I work in a .NET environment, so I was looking into Iron Python, …

.net python ironpython dynamic-language-runtime
How to embed lua (or some other scripting language) in a C# 5.0 application

First of all, I'd like to appoligize in advance for my English. My question is specifically about what do I …

c# lua dynamic-language-runtime
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 …

.net javascript clr dynamic-language-runtime ecma262
using Dynamic to add methods?

Im trying to add function on runtime , something like that : static void Main() { dynamic d = new Duck(); d.Quack =(Action) (() =&…

c# .net dynamic .net-4.0 dynamic-language-runtime