dynamic-language-runtime Questions
5
Solved
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 conc...
Amadou asked 26/7, 2009 at 11:39
2
We are currently hunting some memory leaks in our application, when doing some operation(loading and closing one project inside our application), we know that the memory increase always a little bi...
Spritsail asked 12/10, 2015 at 11:42
2
First of all, I'd like to appoligize in advance for my English.
My question is specifically about what do I need to have in a C# application to be able to interpret a Lua script fed to said appli...
Ploss asked 8/3, 2014 at 9:51
2
Can someone please explaind me what is DLR and how it used in sms gateways?
Leff asked 11/7, 2010 at 9:5
0
I'm parameterizing some linq queries, and ended up using dynamic linq. Initially I had some trouble extracting the data from the dynamic objects it created but I managed to extract it using FSharp....
Leonoreleonsis asked 11/4, 2016 at 4:0
4
Solved
What is the difference between CLR and DLR in C#? are these two concept comparable?
Paulita asked 15/11, 2010 at 12:8
2
Solved
I found very nice answer on a question about building Expression Tree for Where query.
Expression.Lambda and query generation at runtime, simplest "Where" example
Can someone help me an...
Ibex asked 14/12, 2015 at 15:3
2
Solved
I understand that variable capturing is done by the compiler and not by the classes in the .NET framework itself. However, when the DLR was introduced, some of this work must surely have needed to ...
Gutshall asked 25/7, 2015 at 11:23
1
While investigating how C# dynamic keyword works, I stumbled upon some weird behaviour. It almost looks like a bug, but it probably more likely there is a reason for the behaviour.
In the co...
Surge asked 25/1, 2015 at 10:0
1
I get the following error when starting an Asp.Net site that uses an assembly that in turn makes use of the dlr and Iron Python for scripting.
BC30560: 'ExtensionAttribute' is ambiguous in the n...
Shinto asked 7/5, 2009 at 16:8
7
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 sc...
Environ asked 1/6, 2009 at 23:53
2
Solved
Just Asking :
Why 'withOffset' variable is inferred as dynamic as Parse method returns Struct ?
dynamic str = "22/11/2013 10:31:45 +00:01";
var withOffset = DateTimeOffset.Parse(str);
and afte...
Ninanincompoop asked 22/11, 2013 at 17:16
2
Solved
I've been playing with a c# app that hosts IronPython, IronRuby, and (hopefully) PowerShell. Since IronPython and IronRuby were completely built on the DLR, the API for using them is pretty much id...
Lp asked 22/7, 2012 at 2:16
9
Solved
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 ...
Exsanguine asked 2/7, 2009 at 6:1
8
Solved
The lastest release (0.9 Stable) of the Dynamic Language Runtime contains IronPython and IronRuby, but it doesn't contain Managed JScript.
Does anyone know where I can download the latest release ...
Necrose asked 22/4, 2009 at 1:1
2
I have a demo project, which creates an assembly and uses it. I also can debug the injected code. But if I run coverage, analysis or profiling, it is counted, but I want to measure it.
Code:
CSh...
Lamarckian asked 4/6, 2013 at 17:32
4
Solved
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.
Offenbach asked 14/11, 2011 at 14:41
6
Solved
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...
Dumbbell asked 10/1, 2011 at 12:26
2
Solved
I have a handy utility method which takes code and spits out an in-memory assembly. (It uses CSharpCodeProvider, although I don't think that should matter.) This assembly works like any other with ...
Lilley asked 17/4, 2013 at 16:2
2
Solved
How does the is operator work with respect to the DLR?
To make my question a little more explicit, consider the following signature:
public bool Is<T>(Func<dynamic> getInstance)
{ ...
Agnola asked 28/3, 2013 at 17:53
2
Solved
When I want to dynamically call a statically-defined ("statically" in the sense of "determined at compile-time", not in the sense of "class-level member") method on any object in C#, I can use refl...
Burton asked 5/12, 2012 at 0:16
2
Solved
Nancy passes my query-string and form values to my handlers via a dynamic variable. The example below shows form values being passed in to a POST handler via the Nancy request e.g. Request.Form.xxx...
Wondawonder asked 9/5, 2012 at 8:50
1
Solved
I am trying to save (RavenDB build 960) the names and values of form data items passed into a Nancy Module via its built in Request.Form.
If I save a straightforward instance of a dynamic object ...
Milburt asked 24/6, 2012 at 15:33
2
Solved
Following up on this excellent answer, I'm wondering if the DLR using the dynamic keyword can allow a less verbose way of writing code for the generated assembly.
For example, can the aforemention...
Adamant asked 6/6, 2012 at 12:45
2
Solved
scaning the internet , im having trouble understanding in a simple manner - the term call-site (@dlr).
ive been reading here that CallSite is :
one site says
The location in which the method i...
Ecotype asked 2/6, 2012 at 10:39
1 Next >
© 2022 - 2024 — McMap. All rights reserved.