Top "Dynamic" questions

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

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 …

c# .net json serialization dynamic
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.…

javascript performance function dynamic
How do you dynamically add elements to a ListView on Android?

Can anyone explain or suggest a tutorial to dynamically create a ListView in android? Here are my requirements: I should …

android listview dynamic
Variable length (Dynamic) Arrays in Java

I was wondering how to initialise an integer array such that it's size and values change through out the execution …

java arrays dynamic arraylist
Android - Dynamically Add Views into View

I have a layout for a view - <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:…

android dynamic view android-layout
Declare an empty two-dimensional array in Javascript?

I want to create a two dimensional array in Javascript where I'm going to store coordinates (x,y). I don't …

javascript arrays dynamic 2d push
JavaScript: how to change form action attribute value based on selection?

I'm trying to change the form action based on the selected value from a dropdown menu. Basically, the HTML looks …

jquery forms dynamic action
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 = "…

c# dynamic
Using braces with dynamic variable names in PHP

I'm trying to use dynamic variable names (I'm not sure what they're actually called) But pretty much like this: for($…

php variables dynamic dynamic-variables
Static array vs. dynamic array in C++

What is the difference between a static array and a dynamic array in C++? I have to do an assignment …

c++ dynamic arrays static allocation