Dynamic is a widely used term that, in general, describes a decision made by the program at run-time rather than at compile time.

learn more… | top users | synonyms

480
votes
4answers
92k 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 ...
172
votes
14answers
61k 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.
97
votes
3answers
2k views

Why does the C# compiler not fault code where a static method calls an instance method?

The following code has a static method, Foo(), calling an instance method, Bar(): public sealed class Example { int count; public static void Foo( dynamic x ) { Bar(x); } ...
85
votes
6answers
15k 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 ...
82
votes
3answers
2k views

Why does this (null || !TryParse) conditional result in “use of unassigned local variable”?

The following code results in use of unassigned local variable "numberOfGroups": int numberOfGroups; if(options.NumberOfGroups == null || !int.TryParse(options.NumberOfGroups, out numberOfGroups)) { ...
65
votes
1answer
82k views

Add dynamically elements to a listView Android

Can anyone explain me or suggest me a tutorial where I find how can I create a listView in android, that let me to add dynamically new elements with the pressing of a button, but with the simplest ...
55
votes
6answers
14k views

how to detect if a property exists on a dynamic object in C#?

In javascript you can detect if a property is defined by using the undefined keyword: if( typeof data.myProperty == "undefined" ) ... How would you do this in C# using the dynamic keyword with an ...
54
votes
10answers
12k 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 ...
54
votes
4answers
880 views

Why is casting a dynamic of type object to object throwing a null reference exception?

I have the following function: public static T TryGetArrayValue<T>(object[] array_, int index_) { ... //some checking goes up here not relevant to question dynamic boxed = ...
52
votes
10answers
42k 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)? For example, If I add a new lookup value ...
51
votes
8answers
6k 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' ...
51
votes
2answers
72k views

jQuery - change form action based on selection?

I'm trying to change the form action based on the selected value from a dropdown menu... Basically, the html looks like this: <form class="search-form" id="search-form" method="post" ...
50
votes
2answers
19k 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 ...
48
votes
2answers
16k 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, ...
43
votes
4answers
21k views

How to check whether an object has certain method/property?

Using dynamic pattern perhaps? You can call any method/property using the dynamic keyword, right? How to check whether the method exist before calling myDynamicObject.DoStuff(), for example?
43
votes
3answers
2k 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 ...
41
votes
3answers
8k 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 ...
41
votes
4answers
999 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 ...
39
votes
4answers
2k 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 ...
37
votes
10answers
2k views

Alternative virtual mechanism implementations?

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 ...
36
votes
6answers
6k views

dynamic, How to test if a property is available

Scenario is very simple somewhere in the code I have this dynamic myVariable = GetDataThatLooksVerySimilarButNotTheSame(); //how to do this? if (myVariable.MyProperty.Exists) //Do stuff So ...
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
2answers
5k 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?
34
votes
4answers
14k 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 ...
33
votes
5answers
11k 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 ...
32
votes
2answers
6k views

Dynamically adding properties to an ExpandoObject

I would like to dynamically add properties to a ExpandoObject at runtime. So for example to add a string property call NewProp I would like to write something like var x = new ExpandoObject(); ...
32
votes
4answers
3k 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 ...
31
votes
3answers
4k views

Extension method and dynamic object in c#

I am going to summarize my problem into the following code snippet. List<int> list = new List<int>() { 5, 56, 2, 4, 63, 2 }; Console.WriteLine(list.First()); Above code is working fine. ...
29
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 ...
29
votes
5answers
19k 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 ...
28
votes
3answers
6k 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 ...
28
votes
3answers
2k 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 ...
27
votes
4answers
30k 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>> ...
26
votes
3answers
10k views

Parameters in strings.xml possible?

In my android app i'am going to implement my strings with Internationalization. So currently i got a problem with the grammar and the way sentences build in different languages. For example: "5 ...
26
votes
3answers
459 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
10answers
21k views

python: How to add property to a class dynamically?

The goal is to create a mock class which behaves like a db resultset. So for example, if a database query returns, using a dict expression, {'ab':100, 'cd':200}, then I would to see >>> ...
24
votes
5answers
61k views

Dynamic loading of images in WPF

I have a strange issue with WPF, I was loading images from the disk at runtime and adding them to a StackView container. However, the images were not displayed. After some debugging I found the ...
24
votes
1answer
50k 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 ...
24
votes
10answers
81k 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 ...
23
votes
1answer
2k 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>() ...
23
votes
2answers
398 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 ...
23
votes
4answers
6k 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 ...
22
votes
5answers
28k 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. ...
22
votes
10answers
6k 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?
21
votes
4answers
25k views

Dynamic SQL - EXEC(@SQL) versus EXEC SP_EXECUTESQL(@SQL)

What are the real world pros and cons of executing a dynamic SQL command in a stored procedure in SQL Server with EXEC(@SQL) versus EXEC SP_EXECUTESQL(@SQL) ?
21
votes
3answers
5k 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, ...
21
votes
4answers
9k 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?
21
votes
6answers
6k 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 ...
21
votes
4answers
15k views

dynamic calculation of UILabel width in UITableViewCell

I am building a custom, in-application settings view based on UITableViewCellStyle1 (or so). I'm trying to dynamically calculate the width of the left label (title) of a cell in order to determine how ...
21
votes
2answers
224 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 ...

1 2 3 4 5 193