Tagged Questions
A widely used term that, in general, describes a decision made by the program at run-time rather than at compile time.
61
votes
4answers
8k views
What is the difference between call and apply?
What is the difference between using call and apply to invoke a function?
var func = function(){
alert('hello!');
};
func.apply();
vs
func.call();
Are there performance differences between ...
49
votes
9answers
12k views
Deserialize JSON into C# dynamic object?
Is there a way to deserialize JSON content into a C# 4 dynamic type? It would be nice to skip creating a bunch of classes in order to use the DataContractJsonSerializer.
43
votes
3answers
1k views
“cannot implement interface member” error when interface and concrete are in different projects
This compiles:
public interface IMyInterface
{
event Action<dynamic> OnSomeEvent;
}
class MyInterface : IMyInterface
{
public event Action<dynamic> OnSomeEvent;
}
But when i ...
40
votes
22answers
5k views
What do you think of the new C# 4.0 'dynamic' keyword? [closed]
I've just seen an article detailing the new C#4.0 'dynamic' feature previewed at the PDC 2008 and I wondered what people thought of it ? I'm wondering:
what are good examples of the benefit of such ...
38
votes
4answers
5k views
Dynamic Anonymous type in Razor causes RuntimeBinderException
I'm getting the following error:
'object' does not contain a definition for 'RatingName'
When you look at the anonymous dynamic type, it clearly does have RatingName.
I realize I can do this ...
37
votes
4answers
758 views
Is something wrong with the dynamic keyword in C# 4.0?
There is some strange behavior with the C# 4.0 dynamic usage:
using System;
class Program {
public void Baz() { Console.WriteLine("Baz1"); }
static void CallBaz(dynamic x) { x.Baz(); }
static ...
35
votes
7answers
2k views
Why is an ExpandoObject breaking code that otherwise works just fine?
Here's the setup: I have an Open Source project called "Massive" (github/robconery/massive) and I'm slinging around dynamics as a way of creating SQL on the fly, and dynamic result sets on the fly.
...
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 ...
32
votes
9answers
1k views
A question about virtual mechanism in C++
C++ supports dynamic binding through virtual mechanism. But as I understand the virtual mechanism is an implementation detail of the compiler and the standard just specifies the behaviors of what ...
29
votes
8answers
1k views
How to implement a rule engine?
I have a db table that stores the following:
RuleID objectProperty ComparisonOperator TargetValue
1 age 'greater_than' 15
2 username 'equal' ...
28
votes
1answer
1k views
Strange behaviour when using dynamic types as method parameters
I have the following interfaces that are part of an existing project. I'd like to make it possible to call the Store(..) function with dynamic objects. But I don't want to change the Interface ...
26
votes
3answers
387 views
Difference between &(*similarObject) and similarObject? Are they not same?
Can someone please explain this to me
dynamic_cast<SomeObject *>( &(*similarObject) );
What is the point of doing the address of a dereferenced pointer? Wouldn’t the pointer itself just ...
24
votes
11answers
23k views
dynamic enum in C#
How do I create a dynamic enum (and subsequently use the enum choices) in C# based on values in a database lookup table? (using enterprise library data layer) e.g. If I add a new lookup value in the ...
22
votes
3answers
2k views
Will the dynamic keyword in C#4 support extension methods?
I'm listening to a talk about C#4's dynamic keyword and I'm wondering... Will this feature be orthogonal to other .NET features, for example will it support extension methods?
public static class ...
21
votes
2answers
294 views
Anomaly when using 'var' and 'dynamic'
I've run into a bit on an Anomaly where for the first time ever, using the var keyword bit me.
Take this very simple method
public static Int32? GetNullableInt32(Int32 num)
{
return new ...
21
votes
7answers
4k views
What's the difference between dynamic(C# 4) and var?
I had read a ton of articles about that new keyword that will ship with C# v4,but I couldn't make out the difference between a "dynamic" and "var".
This article made me think about it,but I still ...
21
votes
2answers
9k views
How can I dynamically create a selector at runtime with Objective-C?
I know how to create a SEL at compile time using @selector(MyMethodName:) but what I want to do is create a selector dynamically from an NSString. Is this even possible?
What I can do:
SEL selector ...
20
votes
10answers
1k views
What is the correct way to write HTML using Javascript?
I see in some posts that people frown upon using document.write() in javascript when writing dynamic HTML.
Why is this? and what is the correct way?
18
votes
2answers
175 views
Why doesn't the c# compiler check “staticness” of the method at call sites with a dynamic argument?
Why doesn't the C# compiler tell me that this piece of code is invalid?
class Program
{
static void Main(string[] args)
{
dynamic d = 1;
MyMethod(d);
}
public void ...
18
votes
3answers
226 views
C# - Are Dynamic Parameters Boxed
The title says it all. If I have
void Foo(dynamic X) {
}
And then
Foo(12);
Would 12 get boxed? I can't imagine it would, I'd just like to ask the experts.
18
votes
1answer
722 views
C# 4: Dynamic and Nullable<>
So I've got some code that passes around this anonymous object between methods:
var promo = new
{
Text = promo.Value,
StartDate = (startDate == null) ?
new Nullable<DateTime>() ...
18
votes
2answers
1k views
Differences between ExpandoObject, DynamicObject and dynamic
What are the differences between System.Dynamic.ExpandoObject, System.Dynamic.DynamicObject and dynamic?
In which situations do you use these types?
17
votes
3answers
149 views
a list of dynamic functions and dynamically calling them
I would like to be able to store various static methods in a List and later look them up and dynamically call them.
Each of the static methods has different numbers of args, types and return values
...
17
votes
7answers
542 views
How to test whether a value is boxed in C# / .NET?
I'm looking for a way to write code that tests whether a value is boxed.
My preliminary investigations indicate that .NET goes out of its way to conceal the fact, meaning that GetType() and ...
17
votes
2answers
737 views
How to tell if a .NET assembly is dynamic?
When iterating through a set of assemblies, e.g. AppDomain.CurrentDomain.GetAssemblies(), dynamic assemblies will throw a NotSuportedException if you try to access properties like CodeBase. How can ...
17
votes
10answers
53k views
How can I create a dynamically sized array of structs?
I know how to create an array of structs but with a predefined size. However is there a way to create a dynamic array of structs such that the array could get bigger?
For example:
typedef struct
...
16
votes
3answers
131 views
Is it good practice to cast objects to dynamic so the correct overloaded method is called?
My question is about whether what follows is an appropriate use of the dynamic keyword in C# 4.
I have some helper methods that provide a more useful representation of various objects than their ...
16
votes
1answer
403 views
dynamic interactivity problem
I am trying to have two panels, the left showing a graphic and two locators, the right one a zoomed-in version in the area defined by the locators.
I've tried
ClearAll[mndpt];
mndpt = Compile[{{c, ...
16
votes
1answer
5k views
What's the difference between eval, exec, and compile in Python?
I've been looking at dynamic evaluation of Python code, and come across the eval() and compile() functions, and the exec statement.
Can someone please explain the difference between eval and exec, ...
16
votes
6answers
2k views
Is there a best practice for generating html with javascript
I'm calling a web service that returns an array of objects in JSON.
I want to take those objects and populate a div with html. Let's say each object contains a url and a name.
If i wanted to ...
15
votes
1answer
127 views
Why do I get this compile error trying to call a base constructor/method that takes a dynamic argument?
While refactoring some code, I came across this strange compile error:
The constructor call needs to be dynamically dispatched, but cannot be because it is part of a constructor initializer. ...
15
votes
2answers
766 views
Django dynamic model fields
I'm working on a multi-tenanted application in which some users can define their own data fields (via the admin) to collect additional data in forms and report on the data. The latter bit makes ...
15
votes
3answers
3k views
VB.Net equivalent for C# 'dynamic' with Option Strict On
Is there an equivalent for the C# 4 'dynamic' keyword when using 'type safe VB.Net', i.e. with Option Strict On?
15
votes
3answers
3k views
How do I reflect over the members of dynamic object?
I need to get a dictionary of properties and their values from an object declared with the dynamic keyword in .NET 4? It seems using reflection for this will not work.
Example:
dynamic s = new ...
15
votes
1answer
28k views
Dynamic ListView in Android app
Is there a working example out there that demonstrates how to append additional rows in ListView dynamically?
For example:
you are pulling RSS feeds from
different domains
you then display the first ...
15
votes
2answers
3k views
IronPython on ASP.NET MVC
Has anyone tried ASP.NET MVC using IronPython? Having done a lot of Python development recently, it would be nice to continue with the language as I go into a potential ASP.NET MVC project.
I'm ...
14
votes
3answers
2k views
Dynamic + linq compilation error
I'll say up front that I am doing some really scary things with linq on dynamic data.
But I can't figure out why this query fails to compile:
Error 1 The property '<>h__TransparentIdentifier0' ...
14
votes
4answers
2k views
C# ‘dynamic’ cannot access properties from anonymous types declared in another assembly
Code bellow is working well as long as I have class ClassSameAssembly in same assembly as class Program.
But when I move class ClassSameAssembly to separate assembly I have runtime error.
Is it ...
14
votes
5answers
14k views
Using the parent's DataContext (WPF - Dynamic Menu Command Binding)
I looked over this web and google and the solutions didn't work for me.
I have a command on the ViewModel of a UserControl. Well, The usercontrol have a ItemsControl binded to a ObservableCollection. ...
14
votes
4answers
5k views
Android Adverse To Dynamic Languages
I believe I read at some point that due to Android running on the Dalvik VM, that dynamic languages for the JVM (Clojure, Jython, JRuby etc.) would be hard pressed to obtain good performance on Dalvik ...
14
votes
3answers
15k views
LINQ - dynamic WHERE clause?
What is the best way to assemble a dynamic WHERE clause to a LINQ statement?
I have several dozen checkboxes on a form and am passing them back as: Dictionary<string, List<string>> ...
13
votes
1answer
1k views
What is dynamic intialization of object in c++?
What is dynamic initialization of objects in c++?
Please explain with an simple example...
13
votes
5answers
586 views
Why is Clojure dynamically typed?
one thing I like very much is reading about different programming languages. Currently I'm learning Scala but that doesn't mean I'm not interested in Groovy, Clojure, Python, and many others. All ...
13
votes
3answers
3k views
Get value of c# dynamic property via string
I'd like to access the value of a dynamic c# property with a string:
dynamic d = new { value1 = "some", value2 = "random", value3 = "value" };
How can I get the value of d.value2 ("random") if I ...
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
2k views
C# 4 “dynamic” in expression trees
I'm trying to figure out how to put all the pieces together, and would appreciate a concrete source code sample for a simple case to start with.
Consider the following C# code:
Func<int, int, ...
13
votes
4answers
1k views
Return/consume dynamic anonymous type across assembly boundaries
The code below works great. If the Get and Use methods are in different assemblies, the code fails with a RuntimeBinderException. This is because the .Net runtime system only guarantees commonality of ...
13
votes
6answers
3k views
Duck type testing with C# 4 for dynamic objects
I'm wanting to have a simple duck typing example in C# using dynamic objects. It would seem to me, that a dynamic object should have HasValue/HasProperty/HasMethod methods with a single string ...
13
votes
6answers
3k views
How will you use the C# 4 dynamic type?
C# 4 will contain a new dynamic keyword that will bring dynamic language features into C#.
How do you plan to use it in your own code, what pattern would you propose ? In which part of your current ...
12
votes
2answers
167 views
Should an expression of type ‘dynamic’ behave the same way at run-time as a non-dynamic one of the same run-type time?
Consider the following example program:
using System;
public delegate string MyDelegateType(int integer);
partial class Program
{
static string MyMethod(int integer) { return integer.ToString(); ...