Tagged Questions

1
vote
1answer
45 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 …
0
votes
2answers
25 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 m …
2
votes
1answer
86 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 …
3
votes
1answer
129 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 w …
0
votes
1answer
48 views

Resources to learn how to create a compiler /interpreter for the .NET framework.

I'd like to learn more how to create a language for .NET framework. I think I'd like to build a DLR language. I'm having hard time founding good resources. I found a descent art …
4
votes
2answers
299 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 o …
3
votes
3answers
297 views

Overload Resolution in C# 4.0 using dynamic types

I don't have access to the C# 4.0 preview yet. But I am curious, what does the C# 4.0 runtime do when invoking an overloaded method in the following case. Does it resolve to the ge …
1
vote
1answer
108 views

How to import static class (or static method) into IronPython (or DLR) using C# code(not python)?

scope.SetVariable("math", ?? typeof(System.Math) ??); or do I need create a module?
3
votes
2answers
54 views

IronRuby - .NET 4.0 - Question Marks and Exclamations at the End of Method Names

Just curious how is the .NET 4.0 CLR world going to call methods ending in question marks and exclamations? What will the syntax look like calling from C# or VB.NET?
0
votes
1answer
103 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 Bind …
0
votes
2answers
110 views

Does the DLR or better Iron Python run in Silverlight?

Does the DLR or even better Iron Python run in Silverlight?
3
votes
3answers
150 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 confu …
7
votes
3answers
587 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 …
2
votes
2answers
81 views

Is DLR 0.9 supported by Microsoft in a production environment

I know that DLR will be released together with C# 4.0, but I don't know when that will happen. In the meantime if somebody wants to use DLR in a production environment (nothing har …
5
votes
2answers
179 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 attempt …

1 2 3 4 next
15 30 50 per page