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).
Currently I\'m experimenting with C#4\'s dynamic programming and I did not completely understand under which circumstances the keyword dynamic works. It is clear to me that it works with IDispatch, as
In IronJS, we have a custom object derived from CommonObject.We\'re wanting to intercept calls to undefined properties on the object, and provide dynamic responses.(This is required, as it is not poss
As it is now, I can load a local file: engine.ExecuteFile(\"c:/myclass.rb\"); But the DLR throws an exception with this:
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will li开发者_开发技巧kely so
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 o
Is there a way to call JScript functions or access JScript objects via DLR on the server side (ASP.Net)?
Can I dynamically invoke an assembly of higher .Net-version from assembly of lower .Net version? 开发者_JAVA百科Maybe I should use embedded DLR-language (Iron Python)?An assembly doesn\'t have a .NET
I\'m working on a small programming language for the Microsoft DLR, and having a bit of a problem invoking my anonymous methods.Specifically, the code:
This question already has answers here: Closed 11 years ago. Possible Duplicate: When should one use dynamic keyword in c# 4.0?